'Any way to highlight current date column in my google spreadsheet?

I have this planning sheet I am working on: https://docs.google.com/spreadsheets/d/1GQpZh0MOotBl_iAucGm_LnK8shIKjjgukGqaFVvGKF8/edit?usp=sharing

As you can see events are planned out on a sort of calendar look. I will be using this every day and I would like it to highlight the current date to me automatically. I've highlighted today's date manually.

Do you see any way to do this?

It does not need to be the whole column it can just be the day number and week of day on the top if it's easier.

I would greatly appreciate any help you can give me regarding this!

Thanks a lot.

Balint



Solution 1:[1]

I found this question when searching for a way to highlight a whole column/row.

Here's the way to do it:

Apply to range: A1:Z1000 (this is the range of all columns/rows including the dates)

  • Format cells if...: [Custom formula is]
  • Formula (for columns): =A$1=TODAY()
  • Formula (for rows): =$A1=TODAY()

The dollar sign ($) will keep the reference cell fixed. So if the formula uses A$1 it takes A1, B1, C1 etc to look for the date and then highlights the entire column A, B, C etc.

If the formula uses $A1 it takes A1, A2, A3 etc to look for the date and then highlights the entire row 1, 2, 3 etc.

Just make sure that "range" covers the entire rectangle of cells and not just one date. It's easy to adapt if your dates are in a different row/column.

Hope this helps the next person who comes here with a similar problem :)

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 lisa p.