Null Cells

cameron.scrimgeour

Registered User.
Local time
Today, 14:45
Joined
May 7, 2009
Messages
21
Trying to check to see if a cell is null but my code isnt picking it up.

If IsNull(Range("A22").Value) Then

MsgBox ("Cell is NULL")

End If


I know that the cell is 100% NULL so it should work.
 
Hi, cameron.scrimgeour,

Code:
If IsEmpty(Range("A22").Value) Then

    MsgBox ("Cell is NULL")

End If
Ciao,
Holger
 

Users who are viewing this thread

Back
Top Bottom