Hi everyone, I have the following use case and unable to solve for how to output to separate files, especially if the number of files to be output can change. Below are two examples runs with the workflow, but as run 2 highlights the numbers of group can change/is variable so the workflow needs to be able to create/save new files accordingly each run and overwrite the old files to update with new data as well. Would greatly appreciate any help!
Run 1-
| Value | Group |
| 1AB | Alpha |
| 2BC | Beta |
| 3CD | Alpha |
Output-
Alpha.xlsx (Contains 1AB and 3CD)
Beta.xlsx (Contains 2BC)
Run 2-
| Value | Group |
| 1AB | Alpha |
| 2BC | Beta |
| 3FF | Alpha |
| 4DE | Gamma |
Output-
Alpha.xlsx (Contains 1AB and 3FF)
Beta.xlsx (Contains 2BC)
Gamma.xlsx (Contains 4DE)