SyntaxFix
Write A Post
Hire A Developer
Questions
You could use IsEmpty() function like this:
IsEmpty()
... Set rRng = Sheet1.Range("A10") If IsEmpty(rRng.Value) Then ...
you could also use following:
If ActiveCell.Value = vbNullString Then ...