Dashboard Mode - Removing duplicates
Goal
Find unique customer names from a sales list by removing duplicate entries.
Find unique customer names from a sales list by removing duplicate entries.
| Order ID | Customer Name | Product | Amount |
|---|---|---|---|
| 101 | Alice | Notebook | 15 |
| 102 | Bob | Pen | 5 |
| 103 | Alice | Marker | 7 |
| 104 | Charlie | Notebook | 15 |
| 105 | Bob | Pen | 5 |
| 106 | Diana | Folder | 10 |
=UNIQUE(B2:B7)=SUM(D2:D7)=SUM(FILTER(D2:D7, MATCH(B2:B7, B2:B7, 0)=ROW(B2:B7)-ROW(B2)+1))+----------------------+---------------------+ | Unique Customers List | Total Sales Amount | | (List) | (KPI Card) | +----------------------+---------------------+ | Total Sales by Unique Customers (KPI Card) | +--------------------------------------------------+
Adding a filter by product (e.g., only 'Pen') updates the Unique Customers List and both Total Sales KPIs to reflect only sales of that product.
If you add a filter to show only orders where Product = 'Pen', which components update and what are their new values?