Dashboard Mode - Arithmetic operators
Dashboard Goal
Understand how to use basic arithmetic operators in Google Sheets to calculate totals, differences, products, and averages from sales data.
Understand how to use basic arithmetic operators in Google Sheets to calculate totals, differences, products, and averages from sales data.
| Product | Price | Quantity Sold |
|---|---|---|
| Apples | 2 | 30 |
| Bananas | 1 | 50 |
| Cherries | 3 | 20 |
| Dates | 4 | 15 |
| Elderberries | 5 | 10 |
=B2*C2 (copy down for each row). Calculates revenue by multiplying price by quantity sold.=SUM(D2:D6). Adds all product revenues to show total sales revenue.=AVERAGE(B2:B6). Calculates average price of all products.=MAX(C2:C6)-MIN(C2:C6). Shows the difference between highest and lowest quantity sold.=INDEX(A2:A6,MATCH(MAX(D2:D6),D2:D6,0)). Finds product name with highest revenue.+----------------------+----------------------+----------------------+ | Total Revenue | Average Price | Quantity Sold Diff | | (KPI Card) | (KPI Card) | (KPI Card) | +----------------------+----------------------+----------------------+ | Product Revenue Table (Product, Price, Quantity, Revenue) | | (Table with formulas) | +-------------------------------------------------------------------+ | Product with Highest Revenue (KPI Card) | +-------------------------------------------------------------------+
Add a filter for Product name to select one or multiple products. When a product filter is applied:
If you add a filter to show only "Bananas" and "Dates", which components update and what are their new values?