Dashboard Mode - Consolidating data from multiple sheets
Dashboard Goal
Show total sales from three different store sheets combined into one summary dashboard.
Show total sales from three different store sheets combined into one summary dashboard.
Each sheet has sales data for products sold in different stores.
| Product | Sales |
|---|---|
| Apples | 100 |
| Bananas | 150 |
| Cherries | 200 |
Sheet Names and Data:
=Store1!B2 + Store2!B2 + Store3!B2=SUM(Store1!B2:B4) + SUM(Store2!B2:B4) + SUM(Store3!B2:B4)+-------------------------+------------------+ | Consolidated Sales Table | Total Sales KPI | | (Product and Total Sales)| (Big number) | +-------------------------+------------------+ | Bar Chart | | (Sales per Product) | +-----------------------------------------------+
Add a filter to select a specific product. When a product is selected, the consolidated sales table and bar chart update to show only that product's sales. The total sales KPI updates to show the sum for the selected product across all stores.
If you add a filter to show only "Bananas", which components update and what values do they show?