Hey guys,
I need a help.
I need hep with a IF statement.
conditions are:
If cell D43 is greater than or equal to 1, then i want it to show text "san"
if cell D43 is in negative number and is greater than or equal to -1, then i want it to show text "san"
If cell D43="", then ""
I did this code but its very clearly wrong.
Can anyone please help me out
Thank you
I need a help.
I need hep with a IF statement.
conditions are:
If cell D43 is greater than or equal to 1, then i want it to show text "san"
if cell D43 is in negative number and is greater than or equal to -1, then i want it to show text "san"
If cell D43="", then ""
I did this code but its very clearly wrong.
Code:
=IF(D43>=1,"san",IF(D43<0,"san",""))
Can anyone please help me out
Thank you