Dashboard Mode - Removing duplicates
Goal
Find unique customer names from a sales list to avoid counting duplicates.
Find unique customer names from a sales list to avoid counting duplicates.
| Order ID | Customer Name | Product | Amount |
|---|---|---|---|
| 1001 | Alice | Apples | 50 |
| 1002 | Bob | Bananas | 30 |
| 1003 | Alice | Oranges | 20 |
| 1004 | David | Apples | 40 |
| 1005 | Bob | Grapes | 25 |
| 1006 | Eva | Bananas | 35 |
| 1007 | Frank | Oranges | 45 |
=COUNTA(A2:A8)=COUNTA(UNIQUE(B2:B8))=UNIQUE(B2:B8)+----------------+------------------+ | Total Orders | Unique Customers | | (KPI) | (KPI) | +----------------+------------------+ | Unique Customer List | | (Table) | +---------------------------------+
If you add a filter by product (e.g., show only orders with 'Apples'), the Total Orders and Unique Customers KPIs update to count only filtered rows. The Unique Customer List table also updates to show unique customers from filtered data.
If you filter the data to show only orders where Product = 'Bananas', which components update and what are their new values?