I am rather new to Power Automate, and despite my best research efforts (including quite a bit of work with ChatGPT), I can't seem to find a solution for my problem. I am trying to set up a Power Automate flow to split an Excel row into multiple rows by delimiter. I know this is easy to do in Power Query/on Excel itself, but I'm really stuck here.
I made a test file to work through this issue, and it looks like this:
| Column A | Test |
|---|---|
| Name 1 | Cat;Dog;Mouse |
| Name 2 | Deer;Elk;Moose |
Here is what I want the final result to look like:
| Column A | Test |
|---|---|
| Name 1 | Cat |
| Name 1 | Dog |
| Name 1 | Mouse |
| Name 2 | Deer |
| Name 2 | Elk |
| Name 2 | Moose |
This is the current flow I have in Power Automate:
- Manually trigger a flow
3. List rows present in a table
4. Apply to each > body/value = (outputs('List_rows_present_in_a_table')?['body/value']
4.1 Compose (Nested within above "Apply to each") > Inputs: split(items('Apply_to_each')?['Test'], ';')
4.2 Apply to each 1 (Nested within above "Apply to each", after "Compose") > Select An Output From Previous Steps: outputs('Compose')
4.2.1 Add a row into a table (Nested within "Apply to each 1") > Selected the file and specific table from my OneDrive, no advanced parameters set.
According to ChatGPT, I should be seeing more options for 4.2.1. I am not. Currently, the flow runs, but all it does it create blank rows in my table. If anyone could help, I would greatly appreciate it! :)