How to find same values in datatable?

image

Hey there! I have to find same Invoice ID and same Invoice Amount values for my project. A little piece of my project here. How can I find it ?

I should find AAA001 which has 10.

Hey @ozgecatak

Do you mean you want to find duplicate values ?

Thanks
#nK

Yes, I want to get same ID name and they have to same Amount too

1 Like

Hi @ozgecatak ,

Could you also provide us with the Output that is required for this Input ?

So that we can understand what operations that we would have to perform on the data.

I have 49000 Invoices. I have to find invoices which have same Invoice ID and same Inovice Amount at the same time. If my Invoices group have like this type of invoices, I can’t agree with my bank.

@ozgecatak ,

For an Initial Check, Try using Remove Duplicate Rows Activity.
image

  1. Read the Excel sheet as a Datatable using Workbook Read Range Activity.
  2. Use the Output Datatable from Read Range as the Input in the Remove Duplicate Rows Activity.
  3. Use the same datatable as the Output Datatable for the activity.
  4. Write the Datatable to a new Sheet in Excel file using Workbook Write Range Activity.

Let us know if this satisfies your requirement or it still doesn’t solve the issue.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.