Dashboard Mode - Why array formulas process ranges at once
Goal
Understand why array formulas in Google Sheets calculate multiple cells at once instead of one by one.
Understand why array formulas in Google Sheets calculate multiple cells at once instead of one by one.
| Item | Price | Quantity |
|---|---|---|
| Apple | 2 | 3 |
| Banana | 1 | 5 |
| Cherry | 3 | 2 |
| Date | 4 | 4 |
| Elderberry | 5 | 1 |
=SUM(C2:C6)=ARRAYFORMULA(B2:B6 * C2:C6)Array formulas calculate all results in one step, making calculations faster and simpler. Instead of repeating formulas for each row, one formula handles the whole range.
+----------------------+-----------------------+ | Total Items Sold (KPI) | Explanation Box | | 15 | Why ARRAYFORMULA works | +----------------------+-----------------------+ | Total Cost per Item Table | | 6 | 5 | 6 | 16 | 5 | +-----------------------------------------------+
Changing quantities or prices updates the Total Cost per Item and Total Items Sold automatically because the array formula recalculates the entire range at once.
If you change the quantity of Bananas from 5 to 10, which components update?