Attempting to update a status column to show either Not Started, In Progress, or Complete based on blank or not blank statements from other columns.
These formulas work by them selves.
=IF(COLUMN1@row = "", "Not Started", "In Progress")
=IF([COLUMN 10]@row <> "", "Complete")
but put together and they don't. I get the UNPARSEABLE error message.