I'm trying to remove from a datatable the duplicated lines, but without taking into account a column into the duplication filter.
Example :
| Name | Region |
| Toto | 5 |
| Toto | 2 |
| Toto | 1 |
| Gege | 2 |
What I'm searching for if to filter it as the following
| Name | Region |
| Toto | 5 |
| Gege | 2 |
Thank for your help.