Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space DEV and version r0811

D toc

Excerpt

The ISMISSING function tests whether a column of values is missing or null. For input column references, this function returns true or false.

  • You can define a conditional test in a single step for valid values. See IFMISSING Function.
  • Missing values are different from null values. To test for the presence of null values exclusively, see ISNULL Function.

D s lang vs sql

D s
snippetBasic

D lang syntax
RawWrangletrue
Typeref
showNotetrue
WrangleTextdelete row:ismissing(Qty)

ismissing(Qty)

Output: Returns true if the value in the Qty column is missing.

D s
snippetSyntax

D lang syntax
RawWrangletrue
Typesyntax
showNotetrue
WrangleTextdelete value:ismissing(column_string)

ismissing(column_string)


ArgumentRequired?Data TypeDescription
column_stringYstringName of column or string literal to be applied to the function

D s lang notes

column_string

Name of the column or string literal to be tested for missing values.

  • Missing literals or column values generate missing string results.
  • Multiple columns are supported.
  • Wildcards are not supported.

D s
snippetusage

 

Required?Data TypeExample Value
YesString literal or column referencemyColumn

D s
snippetExamples

Example - Type check functions

Include Page
EXAMPLE - Type Functions
EXAMPLE - Type Functions

D s also
labeltype