Hi,
I have an automation that extract a DataTable from a website and need to write to an Excel file, but i need to write only the unique rows based on a column. Example:
DT extracted from website
Name | Date |
---|---|
John | 01/07/2022 |
John | 01/05/2022 |
Abigail | 01/02/2022 |
Output to excel file
Name | Date |
---|---|
Abigail | 01/02/2022 |
Best regards.