I have an action to add rows to another table and I’m using a select expression to reference which rows i want. However, i want to filter the list of referenced rows to omit duplicate values in a column that is not the primary key.
My Key is ‘Use ID’ and the column I want to filter for is ‘Track ID’.
My Select expression is SELECT(Uses[Use ID],[Opportunity ID] = [_THISROW].[Opportunity ID)
If i were to add the ,TRUE to the end of the expression, this would omit duplicate USE IDs but I want to omit duplicate Track IDs. Is there any way to do that?