J jtrevill Nov 18, 2004 #1 How, using VB, can you determine the difference between a zero and blank cell? Thanks
R Ron de Bruin Nov 18, 2004 #2 The VBA IsEmpty function you can use if a cell is really empty Sub test() If IsEmpty(Range("A1")) = True Then MsgBox "blank" Else MsgBox "not blank" End If End Sub
The VBA IsEmpty function you can use if a cell is really empty Sub test() If IsEmpty(Range("A1")) = True Then MsgBox "blank" Else MsgBox "not blank" End If End Sub