Excerpt |
---|
Generates the count of non-null values for rows in each group that meet a specific condition. |
Info |
---|
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 counting of non-nulls without conditionals, use the COUNTA
function. See COUNTA Function.
D lang syntax |
---|
RawWrangle | true |
---|
Type | ref |
---|
showNote | true |
---|
WrangleText | pivot value: countaif(entries, entryValidation == 'Ok') group:City limit:1 |
---|
|
countaif(entries, entryValidation == 'Ok') |
Output: Returns the count of non-null values in the entries
column when the entryValidation
value is 'Ok'
.
D lang syntax |
---|
RawWrangle | true |
---|
Type | syntax |
---|
showNote | true |
---|
WrangleText | pivot value:countaif(col_ref, test_expression) [group:group_col_ref] [limit:limit_count] |
---|
|
countaif(col_ref, test_expression) [group:group_col_ref] [limit:limit_count] |
Argument | Required? | Data Type | Description |
---|
col_ref | Y | string | Reference to the column you wish to evaluate. |
test_expression | Y | string | Expression that is evaluated. Must resolve to true or false |
For more information on the group
parameter, see Pivot Transform.
col_ref
Name of the column whose values you wish to use in the calculation. Column must be a numeric (Integer or Decimal) type.
Required? | Data Type | Example Value |
---|
Yes | String that corresponds to the name of the column | myValues |
test_expression
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') |
Example - COUNTIF Functions
Include Page |
---|
| EXAMPLE - COUNTIF Functions |
---|
| EXAMPLE - COUNTIF Functions |
---|
|