helper column
=IF([Deploy Date]@row = [Deploy Date]29, 1, 0)
Works fine. If the date in the row equals the date in row 29 - returns 1
However i'd like it to search within a range of dates and i'm clearly missing something.
=IF([Deploy Date]@row = [Deploy Date]28:[Deploy Date]39, 1, 0))
I'd like if the deploy date @ row equals ANY date within a range of dates listed on row 28-39 - return 1.
That way conditional format will look for the 1, highlight row red.