Is Null/Empty
Is Blank: tests for whether a cell has no apparent value, " " may be missed
Is Null: tests for whether the result returned in a cell is null
Is Empty: tests for whether a cell has no value
Excel
Is Blank: =~ISBLANK!~(‹cell›)
Is Null: =~ISERROR!~(‹cell›)
Tableau
~ISNULL!~(‹field›)
NB. In Tableau, Null
and Blank
values are treated as equivalent.
Alteryx
Is Blank: ~ISEMPTY!~(‹field›)
Is Null: ~ISNULL!~(‹field›)
NB. The ISEMPTY()
test will also return 'True' for Null
values
OrgVue
Is Blank: node.‹field›.~isblank!~
Is Null: node.‹field› == ~null!~
tSQL
‹field› ~IS NULL!~
Python
~not!~ ‹field›
Last updated
Was this helpful?