Sample Data
This data shows student scores in column A. We want to check if each score is passing (>=50) or failing.
| Cell | Value |
|---|---|
| A1 | Score |
| A2 | 85 |
| A3 | 40 |
| B1 | Result |
This data shows student scores in column A. We want to check if each score is passing (>=50) or failing.
| Cell | Value |
|---|---|
| A1 | Score |
| A2 | 85 |
| A3 | 40 |
| B1 | Result |
=IF(A2>=50, "Pass", "Fail")A B 1 | Score | Result 2 | 85 | <-- formula here 3 | 40 |
A B 1 | Score | Result 2 | 85 | Pass 3 | 40 |