I have two different excel file in that i want to read this two different excel files and combine to one datatable UiPath studio Re framework
Get 2 Excel application scope. Inside that add read range activity each for particular excel.
You will get output of read range in datatable format use that in merge data table activity you will get the combined datatable.
Hope this helps
Hi there,
You need to provide more details. Is the data in the two separate files the same structure? meaning the same columns?
Out of curiosity, what is the end goal for this use case?
@AJ_Ask Thanks For reply i will try
I am reading mail with given condition and then downloading files and then from a particular folder I need to read those files and save to one datatable
@SenzoD please check this
ok,Thank you so much, I will refer this.
Got it.
If the goal is to merge the data into one file, you might as well just read file1 into a datatable using the read range activity, and then use the append range to copy the data into file2. this way you have copied data from file one into file two. (merged the data from two files into one)