Name range down one cell
Try the below
If Range("Plt_1001").Offset(1) = "" Then
MsgBox "cell blank"
End If
If this post helps click Yes
---------------
Jacob Skaria
"tpeter" wrote:
I am building an if statement to check and see if the cell under Plt_1001
name range is blank. How do you refer to this? Thank you for your help again.
Private Sub UserForm_Activate()
Range("Plt_1001").Select
If Range("Plt_1001") -1.value = "" Then ' Doesn't work
Range("Plt_1001").Select
Else
Call Plant_1001
End If
End Sub
|