I'm attempting to build functionality into an existing workflow. My workflow runs on a server and is scheduled. It is creating a report and sending it out to a list of email recipients. That piece is working just fine.
I would like to add functionality for when the app is run manually to allow a user to select the email recipients from a list (text input, already in the workflow)
My text input looks like this:
| | Recipient |
| 1 | Email01 |
2 | Email02 |
| 3 | Email03 |
| 4 | Email04 |
I Summarize/Concatenate those into a single field comma separated value that goes into the recipient field of the email tool.
I've attempted multiple options to limit the list that gets concatenated, but none of them have worked. The "must have" is that the full list of recipients must be passed to get concatenated when the flow is run without external input. Does anyone have any thoughts?