Return TRUE if the optional variant argument has been passed to a procedure.
Syntax IsMissing(argname) Key argname The name of an optional variant procedure argument.
The IsMissing() function can be used in VBA.
Function Demo1 (Optional ArgA)
If IsMissing(ArgA) Then
Msgbox "Value not supplied", vbOKCancel, "windevcluster IsMissing Demo"
End If
“Sometimes only one person is missing and the whole world seems depopulated” ~ Alphonse de Lamartine
IsNull - Is expression NULL? True/False
Nz - Detect a NULL value or Zero Length string.