Dashboard Mode - Formula structure and cell references
Goal
Understand how formulas work in Google Sheets and how to use cell references to calculate values automatically.
Understand how formulas work in Google Sheets and how to use cell references to calculate values automatically.
| Item | Price | Quantity | Total Cost |
|---|---|---|---|
| Apples | 2 | 5 | |
| Bananas | 1 | 8 | |
| Oranges | 3 | 4 | |
| Grapes | 4 | 3 | |
| Mangoes | 5 | 2 |
=SUM(C2:C6)=B2*C2=SUM(D2:D6)+----------------------+----------------------+ | Total Items Sold (KPI) | Total Revenue (KPI) | +----------------------+----------------------+ | Items Sold Table | | Item | Price | Quantity | Total Cost | | +-----------------------------------------------+
Adding a filter by Item name will update the Total Items Sold and Total Revenue KPIs as well as the Total Cost column in the table to reflect only the selected items.
If you add a filter to show only "Apples" and "Oranges", which components update and what are their new values?