Linq to get append to values of 3 excel into one excel

Hey forum,

I need a help where I want to append 3 excel file values into new excel file. Is this possible to do it using linq?

Hi @Akshaya89

Check the below thread

Hope it helps!!

@Akshaya89

  1. First Read all 3 excel files let’s say dt1, dt2, dt3 then
    newDT = (From row In dt1.AsEnumerable().Concat(dt2.AsEnumerable()).Concat(dt3.AsEnumerable())Select row).CopyToDataTable()
  2. write to excel using write range activity
1 Like

Thank you @Manisha_Ravindra

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.