Logical Functions: IF & AND
AS
Aman Saurav
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
IFSfunction to avoid messy nested brackets!