Hello everyone,
I have two “.xlsx” attachment from the mail. I have to rename these files and then merge them.
Thanks
Alperen KEZAY
Hello everyone,
I have two “.xlsx” attachment from the mail. I have to rename these files and then merge them.
Thanks
Alperen KEZAY
@Pankaj.Patil
Thank you, the project I prepared will be used many times and maybe more than two attachments will come. Do I have a chance to get this situation into a loop?
Yes, you will get…
// Create empty datatable that store all files data each time loop executes.
Dim datatableFinal as Datatable = New Datatable()
strFileArray = Directory.GetFiles(“your_Files_Path”, “*.excel”) — please explore more on google.
for each file in strFileArray {
// Perform above steps given.
// Provide datatableFinal to output property of Merge datatable activity.
}
I solved the problem with these methods, thank you @Pankaj.Patil
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.