Dashboard Mode - Selecting data for charts
Dashboard Goal
See sales trends by product and region to understand which products sell best in each area.
Jump into concepts and practice - no test required
See sales trends by product and region to understand which products sell best in each area.
| Month | Product | Region | Sales |
|---|---|---|---|
| Jan | Apples | North | 120 |
| Jan | Bananas | South | 150 |
| Feb | Apples | North | 130 |
| Feb | Bananas | South | 160 |
| Mar | Apples | North | 140 |
| Mar | Bananas | South | 170 |
=SUMIFS(D2:D7,B2:B7,"Apples",C2:C7,"North")+----------------------+----------------------+ | Line Chart | Bar Chart | | (Apples North Sales) | (South Region Sales) | +----------------------+----------------------+ | Summary Table | | (Total Sales by Product & Region) | +---------------------------------------------+
Adding a filter for Region updates both charts and the summary table to show data only for the selected region. Selecting a different region changes the bar chart products and the line chart data accordingly.
If you add a filter for Region = South, which components update and what data do they show?
A1: Month
A2: Jan
A3: Feb
A4: Mar
B1: Sales
B2: 100
B3: 150
B4: 120
A1:B4 and insert a chart, what will the chart show?B1:C5 where B1:C1 are headers and B2:C5 are numbers. What is the likely problem?A1: Product, B1: Q1, C1: Q2, D1: Q3, E1: Q4 A2: ProdA, 100, 120, 130, 140 A3: ProdB, 90, 110, 115, 125 A4: ProdC, 80, 105, 110, 120