Dashboard Mode - Why logical functions enable decision-making
Dashboard Goal
Understand how logical functions like IF help make decisions based on data in Excel.
Understand how logical functions like IF help make decisions based on data in Excel.
| Employee | Sales | Target |
|---|---|---|
| Alice | 1200 | 1000 |
| Bob | 800 | 1000 |
| Charlie | 1500 | 1000 |
| Diana | 950 | 1000 |
| Eva | 1100 | 1000 |
=SUM(B2:B6)=COUNTIF(B2:B6, ">=" & C2) (Note: Excel does not support array in COUNTIF, so use helper column)=IF(B2>=C2,1,0) copied down, then sum:=SUM(D2:D6)=IF(B2>=C2,"Met Target","Below Target")+----------------------+-----------------------+ | Total Sales: 5550 | Number Meeting Target: 3 | +----------------------+-----------------------+ | | | Sales vs Target Chart | | | +-------------------------------------+ | Employee | Sales | Target | Status | |-------------------------------------| | Alice | 1200 | 1000 | Met Target | | Bob | 800 | 1000 | Below Target | | Charlie | 1500 | 1000 | Met Target | | Diana | 950 | 1000 | Below Target | | Eva | 1100 | 1000 | Met Target | +-------------------------------------+
Add a filter to select employees who met or did not meet the target. When filtered, the KPI cards, chart, and table update to show only the selected group.
If you add a filter to show only employees who met the target, which components update?