Dashboard Mode - Why formulas automate calculations
Goal
Understand how formulas in Google Sheets automatically calculate results when data changes.
Understand how formulas in Google Sheets automatically calculate results when data changes.
| Item | Price | Quantity | Total Cost |
|---|---|---|---|
| Apples | 2 | 5 | =B2*C2 |
| Bananas | 1 | 8 | =B3*C3 |
| Oranges | 3 | 4 | =B4*C4 |
| Grapes | 4 | 3 | =B5*C5 |
| Peaches | 2.5 | 6 | =B6*C6 |
=SUM(D2:D6) showing the sum of all total costs.=B2*C2 to calculate cost per item automatically.+----------------------+--------------------+ | Total Sales | | | (KPI Card) | | +----------------------+ Item Table | | | (Data with formulas)| | | | +----------------------+--------------------+
When you change any Price or Quantity value, the Total Cost cells recalculate automatically because of the formulas. The Total Sales KPI updates instantly to reflect the new sum.
Try changing the quantity of Apples from 5 to 10. Which components update?