0
0
Excelspreadsheet~10 mins

Formula structure (=, cell references) in Excel - Real Business Scenario

Choose your learning style9 modes available
Scenario Mode
👤 Your Role: You are a sales assistant at a small retail store.
📋 Request: Your manager wants you to calculate the total price for each product sold by multiplying the quantity sold by the unit price.
📊 Data: You have a list of products with their quantities sold and unit prices in a table.
🎯 Deliverable: Create formulas to calculate the total price for each product using correct formula structure and cell references.
Progress0 / 4 steps
Sample Data
ProductQuantity SoldUnit PriceTotal Price
Apples100.50
Bananas50.30
Oranges80.60
Grapes31.20
Pears70.80
1
Step 1: Click on the first empty cell in the 'Total Price' column next to 'Apples'.
Expected Result
Cell selected for formula input.
2
Step 2: Type the formula to multiply quantity sold by unit price. Start with an equal sign (=), then click the cell with quantity sold, type an asterisk (*), then click the cell with unit price.
=B2*C2
Expected Result
Formula entered in the cell calculating 10 * 0.50.
3
Step 3: Press Enter to see the total price for Apples.
Expected Result
Cell shows 5.00 as the total price.
4
Step 4: Copy the formula down the 'Total Price' column for the other products by dragging the fill handle from the first formula cell down to the last product.
Expected Result
Total prices calculated for all products: Bananas 1.50, Oranges 4.80, Grapes 3.60, Pears 5.60.
Final Result
Product   Quantity Sold   Unit Price   Total Price
Apples          10           0.50          5.00
Bananas          5           0.30          1.50
Oranges          8           0.60          4.80
Grapes           3           1.20          3.60
Pears            7           0.80          5.60
Using '=' starts a formula in Excel.
Cell references like B2 and C2 tell Excel which cells to use.
The asterisk '*' means multiply.
Copying the formula down applies it to other rows automatically.
Bonus Challenge

Modify the formula to add a 10% sales tax to the total price for each product.

Show Hint
Multiply the total price by 1.10 to add 10% tax. For example, use =(B2*C2)*1.10