I would like to read every excel file in a given file folder with different file name. The file name of them are irregular and convert them into one excel spread sheet (they all have same column name but different row amounts) How can I do it?
for each file in Directory.GetFiles(“C:\Temp”,“*.xlsx”)
read range
path: file.tostring read into tempDT
merge table activity: merge tempDT into MainDT
next
what is get files() operation? use assign to do it?
how to read path? Can you further explain a little bit? I’m not clear about the method to read path and get files operation
Directory.GetFiles(“C:\Temp”,“*.xlsx”) will actually search for any files with the extention .xlsx in the C:\Temp folder and add them to an array. You can use the Assign activity to do this…
Do a For Each of that array,
Get the the file path from the array and add a Read Range activity within the For Each loop. For the path name of the read range, you can give the current value of the item variable in the For Each.
and an output datatable variable to hold the extracted data.
Now, create another datatable variable. to hold all the data of each extracted file because the datatable variable used in read range will replace its data every time it reads an excel.
After the read range, add Merge Data Table activity and in that, for Input - give the datatable of the read range, and for the output, give the datatable of the new datatable you created…
I did some changes… There were few things that need to be done… Check out the workflow below. I have added few comments in places where I did the change…
Sorry, doesn’t work
It didn’t combine all the excel files together. Conversely, it simply copy row 2 number into row 3 in each file(only 3 rows in my each excel file, row 1 is title, row 2 and row 3 are different numbers)
Still some small problems
In my files all data are written in A and B column
but in final report, first file written in C and D column, second one written in E and F and third one written in G and H column
Is there a way to write all data in A and B column?
I don’t understand why that happens. I tried executing the same workflow you sent… But it works fine for me… Do you mind sharing your set of excel files? If that is okay with you? I’m wondering whether its due to something in the excel file itself… Ideally when you specify the column in write range, it should only enter in that set of columns…
If you are able to share the excel files, I can check how those work in mine over here…
Regarding the default settings, I did not change any default settings in Studio… Wonder why that’s happening…
@nimin, @nadim.warsi, if you have any idea to why this is happening, would be glad if you could share some thoughts here… I only know few guys by the name yet… So I added the names of guys I remember