Final answer:
To create a spreadsheet that calculates the total price of buying x baskets of tomatoes, you can use the IF statement in Excel. Here's how you can set it up: In cell A1, enter the number of baskets you want to buy. In cell B2, enter the following formula: =IF(A1<=10,A1*11000,IF(A1<=30,(A1-10)*10000+110000,(A1-30)*9000+230000))
Step-by-step explanation:
To create a spreadsheet that calculates the total price of buying x baskets of tomatoes, you can use the IF statement in Excel. Here's how you can set it up:
- In cell A1, enter the number of baskets you want to buy.
- In cell B2, enter the following formula:
=IF(A1<=10,A1*11000,IF(A1<=30,(A1-10)*10000+110000,(A1-30)*9000+230000)) - This formula will check the value in cell A1 and calculate the total cost based on the given price schedule. It calculates the cost for the first 10 baskets at 11,000 per basket, the next 20 baskets at 10,000 per basket, and any additional baskets at 9,000 per basket.