rorymurray
Programmer
How do you deal with a function returning a null value? I know PL/SQL has a function nvl() that can put something in place of a null if null is returned. Does VBA have anything like that?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
IS Nothing
If nvl IS NOTHING Then
MsgBox "Daaaa... I got nothing!"
nvl = 0
End If