Dashboard Mode - Array formulas basics
Dashboard Goal
Understand how to use array formulas to calculate multiple results at once in Excel. This dashboard shows how to sum, multiply, and filter data using array formulas.
Understand how to use array formulas to calculate multiple results at once in Excel. This dashboard shows how to sum, multiply, and filter data using array formulas.
| Item | Price | Quantity | Category |
|---|---|---|---|
| Apple | 1.2 | 10 | Fruit |
| Banana | 0.8 | 15 | Fruit |
| Carrot | 0.5 | 20 | Vegetable |
| Tomato | 0.9 | 12 | Vegetable |
| Orange | 1.1 | 8 | Fruit |
=SUM(B2:B6*C2:C6)=B2:B6*C2:C6=SUM(IF(D2:D6="Fruit", B2:B6*C2:C6, 0))+----------------------+---------------------+ | Total Sales (All) | Total Fruit Sales | | 53.6 | 32.8 | +----------------------+---------------------+ | Sales per Item (List) | | Apple: 12 | | Banana: 12 | | Carrot: 10 | | Tomato: 10.8 | | Orange: 8.8 | +------------------------------------------+
Add a filter dropdown for Category (Fruit, Vegetable). When a category is selected, the Sales per Item list and Total Sales update to show only items from that category. The Total Fruit Sales card updates only when Fruit is selected.
If you add a filter to show only "Vegetable" category, which components update and what are their new values?