I am trying to create a sheet for a moving task that changes each week depending on week number. The idea is to highlight and send out a reminder email to the person that has the task a certain week.
To achieve this I have use the formula following
TODAY() in cell DateToday1
WEEKNUMBER(DateToday1) in cell WeekToday1
In the cells for the Column TRUE is have tried different formulas because I think here lays the problem
IF(WeekToday1 = Week2; 1; 0))
IF(WeekToday1 = Week2; "1"; "0"))
IF(WeekToday1 = Week2; 1; " "))
IF(VALUE(WeekToday1) = Week2; 1; 0)
VALUE(IF(WeekToday1 = Week2; 1; 0))
Obviously the formula on some level works because it is returning a value I expect but when using conditional formatting I am not getting it to work. I have tried different formatting rules depending on which of the above formulas I have used but nothing has worked for me.