pedie
Well-known Member
- Joined
- Apr 28, 2010
- Messages
- 3,875
Current code which does not work is as below
Please advice.
Thanks in advance.
Please advice.
Thanks in advance.
Code:
[/FONT]
[FONT=Courier New]Option Explicit[/FONT]
[FONT=Courier New]Sub EntireRowBlank()
Dim lr As Long
Dim i As Range
lr = ActiveSheet.Range("A" & Rows.Count).End(xlUp).Row
For Each i In Range("A1:A" & lr)
If IsBlank(i.EntireRow) Then
MsgBox "Yes"
End If
Next i
End Sub