Dashboard Mode - Text tables
Dashboard Goal
Show sales performance by product and region in a clear table format to easily compare values.
Show sales performance by product and region in a clear table format to easily compare values.
| Product | Region | Sales | Quantity |
|---|---|---|---|
| Chair | East | 100 | 5 |
| Chair | West | 150 | 7 |
| Table | East | 200 | 3 |
| Table | West | 250 | 4 |
| Lamp | East | 300 | 10 |
| Lamp | West | 350 | 12 |
SUM([Sales])SUM([Quantity])+----------------------+----------------------+ | Total Sales (KPI) | Total Quantity (KPI) | +----------------------+----------------------+ | Sales by Product and Region | | +---------+---------+---------+ | | | Product | East | West | | | +---------+---------+---------+ | | | Chair | 100 | 150 | | | | Table | 200 | 250 | | | | Lamp | 300 | 350 | | | +---------+---------+---------+ | | Quantity Sold by Product and Region| | +---------+---------+---------+ | | | Product | East | West | | | +---------+---------+---------+ | | | Chair | 5 | 7 | | | | Table | 3 | 4 | | | | Lamp | 10 | 12 | | | +---------+---------+---------+ | +---------------------------------------+
Adding a filter for Region will update both text tables and KPI cards to show data only for the selected region(s). For example, selecting East will show sales and quantity only for East region.
Similarly, filtering by Product will update all components to reflect only the selected product(s).
If you add a filter for Region = West, which components update and what changes occur?