Category: Transform / Advanced
Replace multiple values with a single value (constant or calculated).
Setting | Description |
---|---|
Create/Replace column | Select whether the results will replace the values in an existing column or be created in a new column. Options: Create new column (and provide a column name), or Replace existing (and select an existing column). |
Group (flag) as* | Provide a static value or expression that will be used as the flag value. All selected values will be converted to this value. Options: It's an expression or It's a text or number. |
Lookup column | Select the column with the values to be grouped. Once chosen, a list of values present in the column will be displayed at the bottom of the action settings pane. |
Grouping | Choose whether the selected values will be replaced with the group (flag) value, or whether all values except the selected values will be replaced. Options: Group selected, or Group all but selected. |
Value selection | Select the values to be replaced, or excluded from replacement, in the list. |
* Setting can be specified using a parameter.
Values that are not converted to the group (flag) value retain their original value when using the Group selected option and selecting values.
Use the Group selected option, and select values to evaluate when dealing with an expected set of incoming values (see "Status" column in Example #1, below). When dealing with a column containing varying values (e.g. calculated values), use the "Group all but selected" option and do not select any values to evaluate any/all values that pass into this action (see Example #2, below).
When using an expression for the Group (flag) as setting in conjunction with the Group selected option (and selected values), values that are not flagged by the expression retain their original values. However, when using an expression in conjunction with the Group all but selected option (with no selections), the expression determines the output (see Example #2 below).
Flag accounts that are past due.
Customer | Status |
---|---|
Alice | Overdue |
Pierre | Paid |
Iryna | Past due |
Michael | Pending |
Customer | Status | Late flag |
---|---|---|
Alice | Overdue | Late |
Pierre | Paid | Paid |
Iryna | Past due | Late |
Michael | Pending | Pending |
Creaate new column: Late flag
Group (flag) as: Late
Group selected (Overdue, Past due)
Flag transactions that exceed $5000 as "High Risk" for further review.
Transaction ID | Customer | Amount ($) |
---|---|---|
T001 | John | 3200 |
T002 | Emma | 7500 |
T003 | Shira | 4200 |
T004 | Michael | 5500 |
Transaction ID | Customer | Amount ($) | Review |
---|---|---|---|
T001 | John | 3200 | |
T002 | Emma | 7500 | High Risk |
T003 | Shira | 4200 | |
T004 | Michael | 5500 | High Risk |
Create new column: Review
Group (flag) as: (expression) if [Amount ($)] >=5000 then "High Risk"
Group all but selected (None selected)