I am trying to exit my code if the following value is Null
If Label.Value = Null then Exit Sub
If Label.Value = "" then Exit Sub
If Label.Value = "Null" then Exit Sub
If Label.Value.IsNull then Exit Sub
If IsNull.Label.Value then Exit Sub
None of these seem to work, how are these handled?
Thanks
If Label.Value = Null then Exit Sub
If Label.Value = "" then Exit Sub
If Label.Value = "Null" then Exit Sub
If Label.Value.IsNull then Exit Sub
If IsNull.Label.Value then Exit Sub
None of these seem to work, how are these handled?
Thanks