Hello,
I am trying to extract data from forms filled from one Excel file into several Excel files with a template of the form in Power Automate Desktop.
So far I have done this:
1. Start the Excel file that I want data extracted from. %ExcelInstance%
2. Start Excel file with template I want to use. %ExcelTemplate%
3. Copy cells from %ExcelTemplate%
4. Read from Excel sheet and store into %ExcelData%
5. "For each" loop with %CurrentItem% in %ExcelData%
In Loop:
6. Start Excel, to create an empty Excel file. %ExcelTarget%
7. Paste Template into empty Excel file.
8. Write to Excel using %CurrentItem% as value
With this it creates a new Excel file for each row I am extracting, pasting in the template I want to use and writing in the data. Unfortunately it writes it in one row, while I want it to write the data down column B instead so that it fits the template. Is there a way to make it write the row down a column instead?