Dashboard Mode - Arithmetic operators in formulas
Goal
Calculate total cost, average cost, and cost difference using basic arithmetic operators in Excel formulas.
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