Dashboard Mode - Why formulas automate calculations
Dashboard Goal
Understand how formulas in Excel automatically update calculations when data changes.
Understand how formulas in Excel automatically update calculations when data changes.
| Item | Price | Quantity | Total |
|---|---|---|---|
| Apples | 2 | 5 | =B2*C2 |
| Bananas | 1.5 | 8 | =B3*C3 |
| Oranges | 3 | 4 | =B4*C4 |
| Grapes | 4 | 3 | =B5*C5 |
| Totals | =SUM(D2:D5) |
=SUM(D2:D5) which sums all item totals.Price, Quantity, and Total columns. The Total column uses formula =B2*C2 for each row to calculate item sales.Price or Quantity, the Total and Total Sales update automatically because of formulas.+----------------------+--------------------+ | Data Table | Explanation Box | | (Items, Prices, Qty)| (Why formulas auto | | and Totals column) | update results) | +----------------------+--------------------+ | Total Sales KPI Card | +----------------------------------------------+
When you change any number in the Price or Quantity columns, Excel recalculates the Total for that row automatically. Then, the Total Sales KPI card updates because it sums the updated totals. This shows how formulas automate calculations without manual effort.
If you change the quantity of Bananas from 8 to 10, which components update?
Total for Bananas updates automatically.Total Sales KPI card updates to reflect the new sum.