Mulitiple If Statements in a formula

Jared Pietila
Jared Pietila โœญโœญโœญ

Hello,

I am trying to get what stage our project is at from if boxes are filled our checks are checked.

=IF([Invoice Number]@row = "", "1. Need Invoice", IF(CLOSED@row = 1, "4.Closed"), IF(AND([Invoice Number]@row > 1, [Paid Date]@row > TODAY() - 365), "3. To Be Closed", "2.Waiting on Payment"))


When I do just this it works:

=IF([Invoice Number]@row = "", "1. Need Invoice", IF(CLOSED@row = 1, "4.Closed")


and if I do just this it works:

=IF([Invoice Number]@row = "", "1. Need Invoice",IF(AND([Invoice Number]@row > 1, [Paid Date]@row > TODAY() - 365), "3. To Be Closed"


I cant get it to work for all four scenerios.

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!