Excel Functions Logical Functions: IF & AND

Logical Functions: IF & AND

AS
Aman Saurav
| Feb 1, 2025 |
10 min read
#logic #nested

Make decisions in your spreadsheet using IF statements.

=IF(logical_test, value_if_true, value_if_false)

You can nest them for multiple conditions:

=IF(A1>90, 'A', IF(A1>80, 'B', 'C'))

If you have Excel 365, use the IFS function to avoid messy nested brackets!