Hi,
I am trying to create a workflow which will categorize data and record the relevant category on the original file (all existing columns to be included). There will be various checks run through the workflow, tagging each category.
| | ColA | ColB | ColC | Category |
1 | abc | a | 123 | Cat1 |
| 2 | def | e | 123 | |
3 | abc | i | 456 | Cat1 |
| 4 | abc | a | | |
| 5 | abc | e | 123 | |
From the above example, Row 1 and 3 are categorized as Cat1 as there are multiple values in ColC associated with 'abc'. Row 4 is not yet categorized as ColC does not have a value and Row 5 is not categorized yet as it is a repeat of Row 1, this will be captured and categorized separately when ColB is categorized.
Any suggestions for the most efficient way to group and update the data would be appreciated.