Hello PNCD,
The function IsMissing should only be used with Optional arguments that are Variants. Declaring an Optional argument as any other type will result in the missing argument returning the default value for that type. This means there is always a return value and the Optional argument isn't missing.
Example "A"
'This will detect the missing argument.
Function TestA(Optional Rng As Variant)
If IsMissing(Rng) Then MsgBox "You Didn't Enter A Range."
End Function
Example "B"
'This will never see the missing argument.
Function TestB(Optional Rng As Range)
If IsMissing(Rng) Then MsgBox "You Didn't Enter A Range."
End Function
Bookmarks