Hi,
I want to get excel sheet for each rows and each row should contain same header.
Like in the below image
i want alexandar charles with headers in different excel output and andreas with header in different excel output
header
Hey @Sanjana_HS, here's one way you could go about this...
Step 1 is to add a RecordID to your data in order to give each row a unique identifier:
Step 2 is to build the filepath for your Excel outputs - the RecordID is integrated into this to dynamically create a different path for each row which will therefore output them as different files:
Step 3 is preferential - I've just removed the RecordID but you may want to keep it?
Final step is to add an Output Data tool, configure it as normal for an Excel output, and then set the bottom part of the configuration up like so:
Key aspects being Take File/Table Name From Field > Change Entire File Path > Field Containing File Name or Part of File Name = field you made > Choose whether or not to Keep Field in Output
When you run the workflow, the outputs will be one for each record:
Hope this helps! A couple of things to note...
I had to add the RecordID as (unless it's just elsewhere that isn't shown in your screenshot) there are no unique identifiers in your data. I.e. if you were to try and group on name(s), you'd get outputs containing multiple records if 2 or more people had the same first/last/both names. Also, in the Formula tool you'll just need to replace my filepath with your own, replacing the 'Output' part with whatever you want the filename to be. Also, I have just used the standard 'Sheet1' naming, but you can change this to whatever you want as well.
I am getting this error
Hi there,
Your solution has helped me splitting the excel file into individual files! However, i was wondering if it would be possible to modify the row data that's going to be outputted into something like 'Male' under a Gender field into 1 to represent the male gender in the Gender field? Additionally, would it also be possible to output the row data into a different format/adding more fields etc? Any help would be appreciated! Cheers