I’ve 2 excels files. From those excels files i copy the data inside, than row per row i past that data in a new file.
The thing is that from for each row i ve to make a new file. Means seperate files for each row from the 2 first files. Of course will be based on one of them to follow the row numbers…
First call a Excel Application Scope, with a random xlsx file, and inside this excel app scope, use the Invoke VBA Activity, get the result as an Object that you can convert to string array (if needed) with :
Not exactly, for example i have a.xlsx and b.xlsx, wich each one of them has data inside. I get the first row from both of the files, than use that data to fill an existing excel file on specifics cells (Bill/Fatcure). Than save that file with the name “Bill-DATE-Number-1”… etc until no more rows found on the a or b excel file.
I suggest to use Copy File inside a loop to copy the existing excel file while renaming it to “Bill-DATE-Number-1” then fill it with the data you retrieve.
As for the loop you can use the following: 2Excel1Loop.xaml (7.4 KB)