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 r095

...

Excerpt

Selects a single non-null value from rows in each group that meet a specific condition.

Info

NOTE: When added to a transformtransformation, this function is applied to the current sample. If you change your sample or run the job, the computed values for this function are updated. Transforms Transformations that change the number of rows in subsequent recipe steps do not affect the values computed for this step.

To perform a simple counting of non-nulls without conditionals, use the ANY function. See ANY Function.

D s

D s
snippetBasic

ANYIF
d-code-lang-syntax
RawWrangletrue
Typeref
showNotetrue
WrangleTextpivot value:
anyif(custId, donation = 10000) group:City limit:1

...

anyif(custId, donation = 10000)


Output:
Returns a single value from custId when the donation value is greater than 10000. The limit parameter defines the maximum number of output columns. 

D s
snippetSyntax

ANYIF
d-code-lang-syntax
RawWrangletrue
Typesyntax
showNotetrue
WrangleTextpivot value:
anyif(col_ref, test_expression) [group:group_col_ref] [limit:limit_count]

anyif(col_ref, test_expression) [group:group_col_ref] [limit:limit_count]


ArgumentRequired?Data TypeDescription
col_refYstringReference to the column you wish to evaluate.
test_expressionYstringExpression that is evaluated. Must resolve to true or false

...

Include Page
EXAMPLE - LISTIF Functions
EXAMPLE - LISTIF Functions

D s also
labelaggregate