Hello everyone,
I am working with a Data Table in IBM RPA and I need to remove duplicate rows. I would like to know the best way to achieve this. Should I use a built-in command, script, or is there a recommended approach?
For example, I have this data:
| ID |
Name |
Age |
| 1 |
John |
25 |
| 2 |
Alice |
30 |
| 1 |
John |
25 |
| 3 |
Bob |
28 |
And I want to remove the duplicate row so that my final output is:
| ID |
Name |
Age |
| 1 |
John |
25 |
| 2 |
Alice |
30 |
| 3 |
Bob |
28 |
What is the best way to achieve this in IBM RPA?
Thank you for your help!
------------------------------
Anas lateh
------------------------------