Try ThisHello all,
I am looking for Simple MSG box macro.
If B2 field is null i need msg box.
I tried the below code but it is not working.
Code:Sub check() If B2 = "" Then MsgBox "b2 value is null" End If End Sub
[/CODE]
Sub check()
If [B2] = "" Then
MsgBox "b2 value is null"
End If
End Sub