Created
October 27, 2017 06:53
-
-
Save KirillPashkov/fb2d59e429dda7e1a4e3d0a34bd91430 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function IfNull(Expression,Replacement) | |
if IsNull(Expression) then | |
IfNull = Replacement | |
Else | |
IfNull = Expression | |
End If | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment