Hi everyone, I've a workflow with various results look like below, and I'm wondering how'd I output them into different tabs of one same excel file, with each tab has only respective columns, and tab name would also be different (say it could be the 1st column header of each result) - I don't think union tool works here (?) as I have different headers, and realistically I've ~20 sets of results so having 20 output tools is not ideal (and will have read/write issue if I try to output 20 tabs together on same file). Thank you for any idea!!
Food Sample | Food Name | Price |
A1 | X | 10 |
A2 | Y | 20 |
A3 | Z | 30 |
Furniture Sample | Furniture Color |
B1 | Red |
B2 | Blue |
B3 | Black |
Pet Sample | Pet Breed | Pet Age | Pet Toy Name |
C1 | AAA | 1 | AA |
C2 | BBB | 2 | BB |
C3 | CCC | 3 | CC |
Solved! Go to Solution.
@hjiang1217
I guess the data you are trying to output is generated from place to place, so I think maybe we can work this out with combination of providing full path and Block until Done tool as shown in the simple sample below.
@Qiu thank you!!