I have 2 excel file let say A.xls and b.xlsx
I have extracted specific column with values from A.xls file using this code filteredAFile=dt_A.defaultview.ToTable(False,“My Specific Column Name”)
Know when iam using excel activity like for each row and add data row it is taking a long time to paste let say it is taking 5 to 6 min
Is there any linq method to paste my extracted column to b.xlsx file under a column name which is named PO Description.
Linq is to work on datatable but not to write data to excel or any other external file
instead of using loop to add data …if you already knwo the order and data then use write range with the first cell where you want to start writing data…and if you dont want other columns to get effected then use a single column datatable and add the data