Hi all,
This is my first post :-)
Hoping for some help with a long IF formula.
I have sheet that has columns with dates in them
Launch Date, then Nomination Deadline, then Survey Deadline - in that timeline, so there won't be a survey report deadline after a launch deadline. Sometimes these dates are not filled in.
I am trying to have a column which returns a project status based on these dates.
I have 4x statuses.
- Pre-launch (dates before the Launch Date)
- Nominations (Dates after launch but before nomination deadline)
- Evaluations (Dates after launch, after nominations deadline, but BEFORE Survey Deadline
- Report & Debrief (Dates after the survey deadline)
I am working off the understand that IF statements apply to the first, and then the next in the string, rather than all in the string at once, and so have worked backwards.
But It's not working and my brain is fried! Can someone help.
To complicate matters, there are some fields that are blank, so I am having to use "NOT ISBLANK" and I think this is used incorrectly
IF(AND([Survey Deadline]@row > Today@row, (NOT(ISBLANK[Survey Deadline]@row]), “Debrief & Report”, IF(AND([Nomination Deadline]@row > Today@row, [Survey Deadline]@row < Today@row), "evaluations"), IF(AND([Launch Date]@row < Today@row, [Nomination Deadline]@row > Today@row), "nominations"), IF(AND([Launch Date]@row > Today@row, (NOT(ISBLANK[Launch Date]@row), "Pre-Launch"))