Dashboard Mode - Arithmetic operators in formulas
Goal
Calculate total cost, average cost, and cost difference using basic arithmetic operators in Excel formulas.
Jump into concepts and practice - no test required
Calculate total cost, average cost, and cost difference using basic arithmetic operators in Excel formulas.
| Item | Quantity | Unit Price |
|---|---|---|
| Apples | 10 | 0.5 |
| Bananas | 5 | 0.3 |
| Cherries | 20 | 0.2 |
| Dates | 7 | 1.0 |
| Elderberries | 3 | 2.0 |
=B2*C2=SUM(D2:D6)=AVERAGE(C2:C6)=MAX(C2:C6)-MIN(C2:C6)+----------------------+---------------------+ | Total Cost per Item | Grand Total Cost | | (Table with formula) | (Single cell sum) | +----------------------+---------------------+ | Average Unit Price | Price Difference | | (Single cell avg) | (Single cell diff) | +----------------------+---------------------+
Adding a filter for Item name will update the Total Cost per Item table and the Grand Total Cost, Average Unit Price, and Price Difference calculations to reflect only the selected items.
If you filter to show only "Apples" and "Bananas", what is the new Grand Total Cost?
Answer: Apples total cost = 10 * 0.5 = 5.0, Bananas total cost = 5 * 0.3 = 1.5, so Grand Total Cost = 5.0 + 1.5 = 6.5
=A1 * B1?=A1 * B1 uses the asterisk to multiply the values in cells A1 and B1.=A1 + B1 correctly adds the values in cells A1 and B1.=10 + 5 * 2 in Excel?=A1 + B1 * returns an error. What is the problem?=A2 + B2 * A2 correctly adds price plus tax amount (B2 * A2).