Dashboard Mode - Why logical functions handle conditions
Dashboard Goal
Understand how logical functions like IF, AND, and OR help handle conditions in Google Sheets to make decisions automatically.
Understand how logical functions like IF, AND, and OR help handle conditions in Google Sheets to make decisions automatically.
| Student | Score | Attendance (%) |
|---|---|---|
| Alice | 85 | 90 |
| Bob | 72 | 75 |
| Charlie | 60 | 80 |
| Diana | 95 | 95 |
| Eva | 50 | 60 |
=COUNTIF(B2:B6, ">=70")=COUNTIF(C2:C6, ">=90")=IF(B2>=70, "Pass", "Fail") copied down to D6.=IF(AND(B2>=70, C2>=80), "Yes", "No") copied down to E6.=IF(COUNTIF(C2:C6, "<70")>0, "Yes", "No")+----------------------+-----------------------+ | Passed Students: 3 | Perfect Attendance: 2 | +----------------------+-----------------------+ | Pass/Fail Status Table | | +---------+-------+----------------------+ | | | Student | Score | Pass/Fail | | | +---------+-------+----------------------+ | | | Alice | 85 | Pass | | | | Bob | 72 | Pass | | | | Charlie | 60 | Fail | | | | Diana | 95 | Pass | | | | Eva | 50 | Fail | | | +---------+-------+----------------------+ | +---------------------------------------------+ | Eligible for Award Table | | +---------+-------+----------------------+ | | | Student | Score | Eligible for Award | | | +---------+-------+----------------------+ | | | Alice | 85 | Yes | | | | Bob | 72 | No | | | | Charlie | 60 | No | | | | Diana | 95 | Yes | | | | Eva | 50 | No | | | +---------+-------+----------------------+ | +---------------------------------------------+ | Any Low Attendance? Yes/No | +---------------------------------------------+
Add a filter for minimum score or attendance percentage. When you change the filter:
If you add a filter to show only students with attendance above 80%, which components update and how?