Code
If activecell.Value > "" And activecell.Offset(0, 2).Value = "" Then
activecell.Offset(0, 3).Value = ("Check this line")
With activecell.Offset(0, 3).Font
.Name = "Verdana"
.Size = 8
.ColorIndex = 5
.Bold = True
I am trying to find a less volatile way of testing for missing data. This works perfectly if I delete cell contents in active cell before running this code but dosent work if that cell contained any data that was not deleted such as removed with a space bar.
Thanks for any help!!