0
votes

Struggling with this one. I have a sheet with columns A to GC with dates in random places. I need conditional formatting to highlight an entire row if the date in that row is today.

I've got this formula =match(today(),$A1:$GC1) which works on a test sheet (a blank google sheet with a date in a random place) but when applying this to the sheet I need it at, it doesn't work. Just highlights everything for some reason.

Copy of the Google sheet: Sample Sheet

1

1 Answers

1
votes

It seems like the existing values in your sheet are messing with the conditional formatting. Try using COUNTIF instead:

=COUNTIF($A1:$GC1, TODAY())

Reference: