Hello,
I have the dataset bellow.
Month | Doc. Number |
1 | 123456 |
1 | 456789 |
1 | 123456 |
2 | 987456 |
2 | 321456 |
I need to find any duplicate document number within the same period.
Based on my requirements, The rows highlighted, should be filtered as duplicates.
Thank you.
Hi @beatrizmguerreiro ,
You can use a summarize tool to achieve that, grouping by both fields (months and document no.)
That will return you the unique value for each combination of your fields.
Hope that helps,
Angelos
You can use Unique tool.
Duplicate records will output to "D" output.
Summarize tools are also available as @AngelosPachis presents it.