willow1985
Well-known Member
- Joined
- Jul 24, 2019
- Messages
- 929
- Office Version
- 365
- Platform
- Windows
i am hoping someone can help me with an IF formula that has multiple conditions. I have tried a few different ways but still I cannot get it to work.
What I require is
if A2="0" then return a blank
if L2 ="0" then return a blank
If A2>L2 return "Late"
If A2 is <=L2 then return "on time"
=IF(A2="0","",IF(L2="0","",IF(A2>L2,"Late",IF(A2<=L2,"On Time",""))))
I do not have the raw data yet and am just preparing a spreadsheet for it so I am not sure if some of the cells will be blanks or "0" so I need a formula that I can adjust between the two
=IF(A2="","",IF(L2="","",IF(A2>L2,"Late",IF(A2<=L2,"On Time",""))))
These formulas do not work but I have enclosed them to give you an idea.
Thank you to anyone who can help!
Carla
What I require is
if A2="0" then return a blank
if L2 ="0" then return a blank
If A2>L2 return "Late"
If A2 is <=L2 then return "on time"
=IF(A2="0","",IF(L2="0","",IF(A2>L2,"Late",IF(A2<=L2,"On Time",""))))
I do not have the raw data yet and am just preparing a spreadsheet for it so I am not sure if some of the cells will be blanks or "0" so I need a formula that I can adjust between the two
=IF(A2="","",IF(L2="","",IF(A2>L2,"Late",IF(A2<=L2,"On Time",""))))
These formulas do not work but I have enclosed them to give you an idea.
Thank you to anyone who can help!
Carla