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

Generates the count of rows in each group that meet a specific condition. Generated value is of Integer type. 

Info

NOTE: When added to a transform, 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 that change the number of rows in subsequent recipe steps do not affect the values computed for this step.

To perform a simple count of rows without conditionals, use the COUNT function. See COUNT Function.

 

D s
snippetBasic

D code

pivot value: COUNTIF(failed_deliveries >= 10) group:postal_code limit:1

Output: Generates a two-column table containing the unique values for postal_code and the count of records for that postal_code value in which the value of the failed_deliveries column is greater than or equal to 10. The limit parameter defines the maximum number of output columns.

D s
snippetSyntax

D code

pivot value:COUNTIF(test_expression) [group:group_col_ref] [limit:limit_count]

ArgumentRequired?Data TypeDescription
test_expressionYstringExpression that is evaluated. Must resolve to true or false

D s lang notes

For more information on the group and limit parameters, see Pivot Transform.

test_expression

This parameter contains the expression to evaluate. This expression must resolve to a Boolean (true or false) value.

D s
snippetusage

Required?Data TypeExample Value
YesString expression that evaluates to true or false(LastName == 'Mouse' && FirstName == 'Mickey')

 

D s
snippetExamples

Example - COUNTIF Functions

Include Page
EXAMPLE - COUNTIF Functions
EXAMPLE - COUNTIF Functions

D s also
labelaggregate