Dashboard Mode - OR function
Dashboard Goal
Check if salespeople met at least one of two targets: selling more than 50 units or earning more than $1000 commission.
Check if salespeople met at least one of two targets: selling more than 50 units or earning more than $1000 commission.
| Salesperson | Units Sold | Commission ($) |
|---|---|---|
| Alice | 45 | 1200 |
| Bob | 60 | 800 |
| Charlie | 30 | 900 |
| Diana | 70 | 1100 |
| Eva | 50 | 950 |
=AGGREGATE(3,5,D2:D6)=OR(B2>50, C2>1000)+-----------------------------+ | KPI: Number Meeting Targets | +-----------------------------+ | Salesperson | Units | Comm. | Target Met | |-------------|-------|-------|------------| | Alice | 45 | 1200 | TRUE | | Bob | 60 | 800 | TRUE | | Charlie | 30 | 900 | FALSE | | Diana | 70 | 1100 | TRUE | | Eva | 50 | 950 | FALSE | +-------------------------------------------+
Add a filter to show only salespeople who met targets (Target Met = TRUE). The KPI card and table update to show only filtered data.
If you add a filter to show only salespeople with Units Sold > 50, which salespeople remain and what is the KPI count?