How to compare the specific column values in excel sheet with all other values and how to append the those values if the values are same, to another excel sheet?
Hi @PAVI3399,
This will help you,
Hi @PAVI3399 ,
- Take Excel Application Scope.
- Read Range - Sheet data in a DataTable - Say dt_input.
- Iterate the Datatable(dt_Input) using a For each .
- Compare row(“value you want to compare”) = “value to be compared”
5.Take an AddDataRow Activity and add the row from step 4 to it.(Create a new Datatable here - dt_Final)
–
Mukesh