Dashboard Mode - IFS function (multiple conditions)
Goal
We want to create a dashboard that shows the performance category of salespeople based on their sales numbers using multiple conditions.
We want to create a dashboard that shows the performance category of salespeople based on their sales numbers using multiple conditions.
| Salesperson | Sales |
|---|---|
| Alice | 1200 |
| Bob | 800 |
| Charlie | 450 |
| Diana | 1500 |
| Edward | 300 |
| Fiona | 950 |
=IFS(B2>=1200, "Excellent", B2>=900, "Good", B2>=500, "Average", TRUE, "Needs Improvement")=SUM(B2:B7)=COUNTIF(C2:C7, "Excellent")=COUNTIF(C2:C7, "Needs Improvement")+----------------------+----------------------+----------------------+ | Salesperson | Sales | Performance Category | +----------------------+----------------------+----------------------+ | Alice | 1200 | Excellent | | Bob | 800 | Average | | Charlie | 450 | Needs Improvement | | Diana | 1500 | Excellent | | Edward | 300 | Needs Improvement | | Fiona | 950 | Good | +----------------------+----------------------+----------------------+ +----------------------+----------------------+ | Total Sales: 5200 | Excellent Count: 2 | +----------------------+----------------------+ | Needs Improvement: 2 | | +----------------------+----------------------+
Add a filter for sales range or category. When you select a category (like "Excellent"), the table shows only those salespeople. The counts and total sales update to match the filtered data.
If you filter the dashboard to show only salespeople with sales above 900, which categories and counts update? The table will show only "Excellent" and "Good" categories. The count of "Needs Improvement" will be zero. Total sales will sum only those filtered.