I'm trying to put the below formula into a column formula and continue to get this error: "The column formula syntax isn’t quite right, see our help article https://help.smartsheet.com/articles/2481944 for more information.". I've tried everything I can think of and it just isn't working. I've tried breaking it into pieces to find the part that isn't working, the first IF statement is successful but all of the following are giving the error, making me wonder if it has to do with my use of TODAY().
=IF([Temp Move 2 Move In Date]@row = "", "Vacant", IF([Temp Move 2 Move In Date]@row =TODAY(), “Occupied”, IF([Temp Move 2 Move In Date]@row >TODAY(), "Vacant", IF(AND([Temp Move 2 Move In Date]@row <TODAY(), [Perm Unit Move In Date]@row >=TODAY()), "Occupied", IF(AND([Temp Move 2 Move In Date]@row <TODAY(), [Perm Unit Move In Date]@row <TODAY()), "Vacant", "Error")))))