Hi - I have a formula that I use in my sheets that notes if a task starts this week, next week or should have started last week.
=IF(WEEKNUMBER([Start Date]@row) = (WEEKNUMBER(TODAY())), "Starts This Week", IF(WEEKNUMBER([Start Date]@row) = (WEEKNUMBER(TODAY()) + 1), "Starts Next Week", IF(WEEKNUMBER([Start Date]@row) = (WEEKNUMBER(TODAY()) - 1), "Started Last Week", "")))
I am having a hard time because this does not do a year check. I tried to add the year check and got stuck. Is there somebody that could help me include a YEAR(TODAY()) = YEAR([Start Date]@row) into the formula? I've tried and given up.
Thanks in advance!