Skip to content

Instantly share code, notes, and snippets.

@KirillPashkov
Created October 27, 2017 06:53
Show Gist options
  • Save KirillPashkov/fb2d59e429dda7e1a4e3d0a34bd91430 to your computer and use it in GitHub Desktop.
Save KirillPashkov/fb2d59e429dda7e1a4e3d0a34bd91430 to your computer and use it in GitHub Desktop.
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