I have 2 datatable…
Table A has some rows and Table B has some rows…
Table B contains the rows which will be available in Table A…
I need to get the value of table B rows which are available in tableA
Eg:
Table A
Column 1
abc
cde
Table B
Column 1
cde
rfe
Output
rfe
1 Like
Srini84
(Srinivas Kadamati)
July 30, 2020, 3:39pm
2
@Sweety_Girl
Check as below
UnMatched_Two_DataTables.xaml (9.4 KB)
Mark as solution if this helps
Thanks
3 Likes
Can we do the same with 2 arrays?
ppr
(Peter Preuss)
July 30, 2020, 6:18pm
4
@Sweety_Girl
arr1.Intersect(arr2).toArray - getting the items which are common in both arrays
arr2.Except(arr1)toArray - getting the arr2-items which are not common with arr1
2 Likes
@Srini84 and @ppr Thank you
Both Works!!
1 Like
system
(system)
Closed
August 3, 2020, 9:14am
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.