Sample Data
This table shows student scores in column A. We want to assign grades in column B using the IFS function based on score ranges.
| Cell | Value |
|---|---|
| A1 | Score |
| A2 | 85 |
| A3 | 72 |
| A4 | 60 |
| A5 | 45 |
| A6 | 30 |
| B1 | Grade |
This table shows student scores in column A. We want to assign grades in column B using the IFS function based on score ranges.
| Cell | Value |
|---|---|
| A1 | Score |
| A2 | 85 |
| A3 | 72 |
| A4 | 60 |
| A5 | 45 |
| A6 | 30 |
| B1 | Grade |
=IFS(A2>=80, "A", A2>=70, "B", A2>=60, "C", A2>=50, "D", TRUE, "F")A B 1 |Score | Grade 2 | 85 | -> Formula here 3 | 72 | 4 | 60 | 5 | 45 | 6 | 30 |
A B 1 |Score | Grade 2 | 85 | A 3 | 72 | 4 | 60 | 5 | 45 | 6 | 30 |