I have a stagnant formula that color codes projects the same if they are releasing the same week. I want to make the formula dynamic though for when projects move. I've used some other's solutions from this forum but still unable to get this to work. I have a large spreadsheet with projects and a Release Date column. I also have several helper columns:
Auto: this is automated numbering
Row: =MATCH(Auto@row, Auto:Auto, 0)
Week Color: Where my problematic formula lives and is connected to Conditional Formating. "Yes" result is one color, "False" is a second color, and "True" is a third color
My old formula in Week Color was this:
=IF(WEEKNUMBER([Release Date]2) = WEEKNUMBER(TODAY()) + 1, "Yes", IF([Release Date]1 = [Release Date]2, [Week Color]1, IF([Week Color]1 = "False", "True", "False")))
The formula I'm trying to get to work is this:
=IF(WEEKNUMBER([Release Date]@row) = WEEKNUMBER(TODAY()) + 1, "Yes", IF(INDEX([Release Date]:[Release Date], Row@row - 1) = [Release Date]@row, INDEX([Week Color]:[Week Color], Row@row - 1), IF([Week Color]1 = "False", "True", "False")))
Any help would be hugely appreciated!