Hello,
I am trying to get the status column to populate based on date range.
I have a Start and Finish date in each row and want it to do the following
When Start date is < today, say "NOT STARTED"
When Finish date is > today, say "COMPLETE"
This third one is tricky - When Start date is < = today AND Finish date is > = today, then say "IN PROGRESS"
=IF(Start@row<TODAY(), “NOT STARTED”, IF(Finish@row>TODAY(), “COMPLETE”,IF(AND(Start@row>=TODAY(),Finish@row<=TODAY()),“IN PROGRESS”)))
Having the most trouble with the IF(AND...... function
=IF(AND(Start@row<TODAY(),Finish@row>TODAY()),“IN PROGRESS”)
Do I have too many parentheses? Should I be using brackets?
Thanks in advance