Dashboard Mode - Appending queries
Goal
Combine sales data from two different months into one list to see total sales together.
Combine sales data from two different months into one list to see total sales together.
| Month | Product | Sales |
|---|---|---|
| January | Apples | 100 |
| January | Bananas | 150 |
| January | Cherries | 200 |
| February | Apples | 120 |
| February | Bananas | 180 |
| February | Cherries | 210 |
=VSTACK(A2:C4, A7:C9)=SUM(VSTACK(C2:C4, C7:C9))=UNIQUE(VSTACK(B2:B4, B7:B9))+----------------------+------------------+ | Combined Sales Table | Total Sales | | (Appended Data) | (Sum of Sales) | +----------------------+------------------+ | Unique Products List | +-----------------------------------------+
If you add a filter to select a specific product, the Combined Sales Table and Total Sales will update to show only data for that product. The Unique Products List remains the same because it shows all products.
If you filter the dashboard to show only "Bananas", which components update and what changes do you see?