I m Reading two different excel and I have to compare their datatable by comparing two datatable if match found then i have to paste in new excel
Need Help!
Regards
I m Reading two different excel and I have to compare their datatable by comparing two datatable if match found then i have to paste in new excel
Need Help!
Regards
@Addy_619
Can you Post some Sample Data and the information on the compair columns. This helps us to give you faster and more direct a suggestion to you. Thanks
i have attach file for ur referenece Need Help!
Regards
OK will a Look on IT give some little time
okay!!
okay!
Give a chance to following:
1 - Readin Excel A - e.g. dtA is the output of Read Range
2 - Readin Excel B - e.g. dtB is the output of Read Range
3 - Find the matches
Assign activity:
(From da In dtA.AsEnumerable
Join db In dtB.AsEnumerable
On da(0).ToString.Trim Equals db(0).ToString.Trim
Select da).CopyToDataTable
To: dtResult of Datatype: DataTable
4 - Write Result Excel - Write Range of dtResult
FYI: Addy_619.xaml (9.7 KB)
@Addy_619 You can use join data table activity .
In Join DataTable activity use inner join.
Hope this would be helpful.