Formula Help

Copper Contributor

Hi All,

 

I have this formula:

=IF(E2>=TODAY(),"",IF(ISOWEEKNUM(F2)=ISOWEEKNUM(TODAY()),"Due Today",""))

However I would like to add an extra bit to this which is when column G is shown as complete then I want this message to change to change the message to task completed but the rest of the original function above will need to work as it currently does.

 

Thank you

4 Replies

@Harry2145 

=IF(G2="complete","task completed",IF(E2>=TODAY(),"",IF(ISOWEEKNUM(F2)=ISOWEEKNUM(TODAY()),"Due Today","")))

Maybe with this formula. 

@OliverScheurich thank you for the above, but the original formula is not working, tasks that are due for this week are not showing due this week where as before they did

@Harry2145 

Which of the examples in the attached file doesn't work as expected? Maybe i didn't correctly understand what you want to do.

@OliverScheurich I used the following formula =IF(G2="complete","task completed",IF(E2>=TODAY(),"",IF(ISOWEEKNUM(F2)=ISOWEEKNUM(TODAY()),"Due Today",""))) however this is not showing as due this week even though the task is due this week