Hi there
I am trying to use vba to check each cells in the column if the date has exceeded 3 days. If so the whole row will be highlighted red.
Here is my syntax
If Range("a:a").value < Range("a:a").value + 3 then
Range("a:a")EntireRow.Interior.ColorIndex = 8
End If
However I could not get the program to work. Are there anyone who can advice me on this?
I am trying to use vba to check each cells in the column if the date has exceeded 3 days. If so the whole row will be highlighted red.
Here is my syntax
If Range("a:a").value < Range("a:a").value + 3 then
Range("a:a")EntireRow.Interior.ColorIndex = 8
End If
However I could not get the program to work. Are there anyone who can advice me on this?