Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

hiddentrue

Function: ifNull(

...

)

Acts as a simple IF statement to determine what to do when the expression supplied to it is _NULL

...

Function: ifNull()

Returns a value depending on whether a supplied expression is _NULLor not. Specifically it checks the value returned by the first expression provided, if this is _NULL the second expression will run and if it is not _NULL the third expression will run. If the third statement is blank the expression will do nothing and continue.

Syntax

  1. ifNull(expression, nullReturnValue)
  2. ifNull(expression, nullReturnValue, notNullReturnValue)

...