Hi @salazachou , the GroupBy will always give you the unique values of the combination of the columns you are grouping on. This behaviour usually happens when there is a âhiddenâ character that makes the data appear to be the same, but in reality itâs not, as you found out.
A couple of things you can do to test the data when you encounter these situations:
1-You can use the Duplicate Row Filter node and see if you get the same results (it will only confirm that GroupBy is working as expected)
2-You can concatenate some dummy values before and after your text to see if there is anything there. For example, you can run this in the String Manipulation: join("XXXX", $ID", "XXXX")
So, you would see this result as an example:
XXXX11112 0XXXX
XXXX11112XXXX
Itâs basically avoiding you having to copy and paste in notepad