ExCellerate.Functions.General.IsNull (excellerate v0.4.0)

Copy Markdown View Source

Returns true if a value is null, false otherwise.

Unlike isblank, this only checks for null — empty strings and whitespace return false.

Examples

isnull(null)     true
isnull(0)        false
isnull('')       false
isnull('hello')  false