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
Is Blank: =~ISBLANK!~(‹cell›)
Is Null: =~ISERROR!~(‹cell›)
=ISBLANK(A1)
=ISERROR(A2)
~ISNULL!~(‹field›)
ISNULL([Name])
NB. In Tableau, Null and Blank values are treated as equivalent.
Null
Blank
Is Blank: ~ISEMPTY!~(‹field›)
Is Null: ~ISNULL!~(‹field›)
NB. The ISEMPTY() test will also return 'True' for Null values
ISEMPTY()
Is Blank: node.‹field›.~isblank!~
Is Null: node.‹field› == ~null!~
‹field› ~IS NULL!~
~not!~ ‹field›
NB. The above example assumes a variable has been declared for name. For more information, go to General > Variablesarrow-up-right.
name
Last updated 5 years ago
Was this helpful?
ISEMPTY([Name])
ISNULL([Salary])
node.name.isblank;
node.salary == null;
SELECT * FROM EmployeesData WHERE FullName IS NULL
not name