Data row - Unique

I do not think so but I wanted to check and see if there is a way to enter multiple filters on a data row unique module.

for example. if I had 5 records…
image

If I use ID then I will only get A,1 and B,1 but will lose the rest. If I use record, I will get A,1 and A,2. What I want is to return the 4 unique pairs A1, A2, B1, B2 (and filter out the duplicate A1).

Is it possible to do this natively?

EDIT…
What I did instead was concat the two records and use that instead. Just wanted to know if it could be done in a single built in module or not.

No, the baseline Data Rows - Unique module cannot do that type of logic natively.

Your solution is what I would have done using baseline modules. First use a Loop with an embedded Text Builder module to create a new node with the concatenation of the id value plus the record value. Have the loop add that result as a new node to each row. Then use the Data Rows - Unique module on that computed node.

Another solution is to use inline Java/PHP code.

that is exactly what I did. Just wanted to make sure there wasn’t a different native way

thanks