Sample Data
This data shows student scores in column A. We want to check if each score is a passing score (60 or above) using logical functions.
| Cell | Value |
|---|---|
| A1 | Score |
| A2 | 85 |
| A3 | 55 |
| A4 | 70 |
| B1 | Pass? |
| B2 | |
| B3 | |
| B4 |
This data shows student scores in column A. We want to check if each score is a passing score (60 or above) using logical functions.
| Cell | Value |
|---|---|
| A1 | Score |
| A2 | 85 |
| A3 | 55 |
| A4 | 70 |
| B1 | Pass? |
| B2 | |
| B3 | |
| B4 |
=IF(A2>=60, "Pass", "Fail")A B 1 | Score | Pass? | 2 | 85 | --> | 3 | 55 | | 4 | 70 | |
A B 1 | Score | Pass? | 2 | 85 | Pass | 3 | 55 | | 4 | 70 | |