Dashboard Mode - Filtering with filter views
Goal
See sales data for specific regions easily by using filter views without changing the original data for others.
See sales data for specific regions easily by using filter views without changing the original data for others.
| Order ID | Region | Salesperson | Product | Sales Amount |
|---|---|---|---|---|
| 1001 | East | Alice | Widget | 250 |
| 1002 | West | Bob | Gadget | 300 |
| 1003 | East | Charlie | Widget | 150 |
| 1004 | South | Diana | Gizmo | 400 |
| 1005 | West | Eva | Gadget | 350 |
| 1006 | North | Frank | Widget | 200 |
| 1007 | South | Grace | Gizmo | 450 |
=SUMIF(B2:B8, "East", E2:E8) showing total sales for East region.+----------------------+-----------------------+ | Filter View Selector | Total Sales (East) | +----------------------+-----------------------+ | Sales Data Table | | (Filtered by filter views) | +-------------------------------------------------+
User selects the filter view named "East Region Sales" from the Data > Filter views menu. This filters the Sales Data Table to show only East region rows. The Total Sales (East Region) cell updates automatically because it uses a formula summing only East region sales.
If you add a filter view for Region = "West", which components update?