Home > Software design >  Trying to get this spreadsheet to highlight cells based on todays date
Trying to get this spreadsheet to highlight cells based on todays date

Time:09-21

So, I'm looking for a way to make the cell(s) highlight themselves based on todays date, nothing too fancy just so it's simpler to see the day. Pictured below is the graph I currently have.

enter image description here

CodePudding user response:

try on range A2:Z:

=A$2&A3=TEXT(TODAY(); "mmmmd")
  • Related