Dashboard Mode - Why external data expands analysis
Dashboard Goal
Understand how adding external data, like regional population, helps analyze sales performance better.
Jump into concepts and practice - no test required
Understand how adding external data, like regional population, helps analyze sales performance better.
| Product | Region | Sales | Population |
|---|---|---|---|
| Apples | North | 150 | 1000 |
| Apples | South | 200 | 1500 |
| Bananas | North | 180 | 1000 |
| Bananas | South | 220 | 1500 |
| Cherries | North | 90 | 1000 |
| Cherries | South | 130 | 1500 |
=SUM(C2:C7) Result: 970=AVERAGEIF(B2:B7,"North",C2:C7) Result: 140=ARRAYFORMULA(C2:C7 / (D2:D7 / 1000)) Result: [150, 133.33, 180, 146.67, 90, 86.67]+----------------------+-------------------------+ | Total Sales | Average Sales (North) | +----------------------+-------------------------+ | Summary Table (Product, Region, Sales, Population, Sales per 1000) | +---------------------------------------------------------------------------------+
Filter by Region to update all KPIs and the summary table. Selecting 'North' or 'South' shows sales and population data only for that region, recalculating totals and averages accordingly.
If you add a filter for Region = South, which components update?
=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "Data!B2:B4") and the external sheet has values 10, 20, 30 in B2:B4, what will be the output?=IMPORTRANGE("https://docs.google.com/spreadsheets/d/abc123", "Sheet1!A1:A5") but see a #REF! error. What is the most likely fix?