Generates the count of rows in each group that meet a specific condition. Generated value is of Integer type. |
NOTE: When added to a transformation, 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. Transformations 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.
countif(failed_deliveries >= 10) |
Output: Returns the count of records in which the value of the failed_deliveries
column is greater than or equal to 10.
countif(test_expression) [group:group_col_ref] [limit:limit_count] |
Argument | Required? | Data Type | Description |
---|---|---|---|
test_expression | Y | string | Expression that is evaluated. Must resolve to true or false |
For more information on the group
and limit
parameters, see Pivot Transform.
This parameter contains the expression to evaluate. This expression must resolve to a Boolean (true
or false
) value.
Required? | Data Type | Example Value |
---|---|---|
Yes | String expression that evaluates to true or false | (LastName == 'Mouse' && FirstName == 'Mickey')
|