Home > other >  How to highlight the rows in google spreadsheet if the first column value is date?
How to highlight the rows in google spreadsheet if the first column value is date?

Time:12-23

I am very new to google spreadsheet and trying to use conditional Formatting to highlight the rows only if the first column value is Date.

My attempt

=not (isblank($A4))

// This is not working.
// But A4 is not fixed, on a new day if I insert some rows, $A4 might be $A5 and it may not work.

Example google sheet

  • this sheet has two columns Date and Contents.
  • I want to highlight rows only when first value is date as shown below
Date     Contents

Dec 22   hello  --> highlight this row, since it has date on column Date
         hi      ---> don't hightlight this


Dec 21  This is another data and needs to be highlighted
        dont highlight me
        dont highlight me

Dec 20  highlight me

And so on.

CodePudding user response:

Try this formula

=$A1<>""
  • Related