Re: Merging datasets based upon primary key
That's what I had to end up doing.
loop through ds1 rows
loop through ds2 rows
loop through ds1 columns
loop through ds2 columns
look for matching values
copy columns from ds2 in ds1
I just thought there would be an easier way to do that than using nested loops.
|