HI all,
I am trying to automate a process, currently :
- A Colleague visits a site and collates a list of issues.
- Sends an email with the issues they found.
- I collate this into an excel file
- Send the total output to one team
- Create an itemised list of issues per site for a second team to work through.
This is labour intensive and time consuming as the data I receive is not uniform, So I have create a form using MS forms.
As MS forms does not allow for multiple answers to one question, the user has to list all issues within one text box. I can take each row (Submission) and create a power query that splits the submission into multiple rows based on delimiters within a cell and add to a work sheet using the Store number as a title.
Before:
| 7000000000 | 81 | 12345 | 6/21/2020 | ///*no: 1 *Model: 2 *S/N: 3 *Action: 4 ///*no: 1 *Model: 2 *S/N: 3 *Action: 4 ///*no: 1 *Model: 2 *S/N: 3 *Action: 4 ///*no: 1 *Model: 2 *S/N: 3 *Action: 4 |
After:
| REF : | 4 Digit Store No.: | code : | Date completed : | List of issues resolved : |
| 7000000000 | 81 | 12345 | 6/21/2020 | ///*no: 1 *Model: 2 *S/N: 3 *Action: 4 |
| 7000000000 | 81 | 12345 | 6/21/2020 | ///*no: 1 *Model: 2 *S/N: 3 *Action: 4 |
| 7000000000 | 81 | 12345 | 6/21/2020 | ///*no: 1 *Model: 2 *S/N: 3 *Action: 4 |
| 7000000000 | 81 | 12345 | 6/21/2020 | ///*no: 1 *Model: 2 *S/N: 3 *Action: 4 |
| 7000000000 | 81 | 12345 | 6/21/2020 | ///*no: 1 *Model: 2 *S/N: 3 *Action: 4 |
I have successfully automated steps 2,3 and 4 with the flow below :

But have hit a dead end when automating step 5 (Create an itemised list of issues per submission for a second team to work through).
I have tried to create a flow that mimics exactly what I do manually but I don,t know if this is even the best solution.
I have successfully created a new worksheet, dynamically using the "4 digit store number" but have hit a dead end trying to add a new table as I do not have a table name to enter as its dynamically selected in the previous step.
Is there a way to create a separate worksheet per site in excel ? , or should I be looking to create the itemised list in a different program.