Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

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
snippetBasic

D code

delete row:ISMISSING(Qty)

Output: Deletes any row in which the value in the Qty column is missing. 

D s
snippetSyntax

D code

delete value: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 can be specified as an array, as in the following:

D code

delete value:ISMISSING([col1,col3,col5])

  • Column ranges are not 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