Thread
:
If blank cell continue macro
View Single Post
#
5
Posted to microsoft.public.excel.programming
Beep Beep
external usenet poster
Posts: 101
If blank cell continue macro
Thanks Guillett
It stops at the first blank. Any suggestions. I want it to continue on and
stop at the last cell (next cell would be blank)
Frank
"Don Guillett" wrote:
One way, depending on what you want with blanks & "?"
Sub changecolorif()
lr = Cells(Rows.Count, "e").End(xlUp).Row
For Each c In Range("e12:e" & lr)
c.Interior.ColorIndex = xlNone
If Date - c 30 Then x = 3
If c Date Then x = 34
c.Interior.ColorIndex = x
Next c
End Sub
--
Don Guillett
SalesAid Software
"Beep Beep" wrote in message
...
I have a column with dates in it and I am running the following macro:
Sub colr()
Range("e2").Select
Do
If Now - ActiveCell.Value 30 Then
ActiveCell.Interior.ColorIndex = 3
ElseIf ActiveCell.Value Now Then
ActiveCell.Interior.ColorIndex = 34
End If
ActiveCell.Offset(1, 0).Select
If ActiveCell = "" Then
Exit Do
End If
Loop Until ActiveCell.Value = " "
End Sub
Macro runs fine, however it stops when it comes to a blank cell or a cell
with a question mark (?) in it. How can I change this macro to bypass if
the
above occurs.
I actually want it to run until it gets to the bottom of the column and
hits
a blank cell there and then stops.
Thanks
Frank
Reply With Quote
Beep Beep
View Public Profile
Find all posts by Beep Beep