Hi
I have an reviewers output box on for selected item to capture 2 or 3 email addresses. As you can put multiple email addresses in this box the output is first.user@etc.com;second.user@etc.com;
I would like to get the 2 or 3 emails in a varible so tried this
split('Reviewers',';') to see if i could split those email address to place in different sharepoint columns
sbonera,
To return specific items from the array, append it with [#]
1st Email Address = split('Reviewers',';')[0]
2nd Email Address = split('Reviewers',';')[1]
3rd Email Address = split('Reviewers',';')[2]
Cheers
Hello, @sbonera!
Thank you for posting on the Flow Community Forum! Have you had an opportunity to apply @Anonymous‘s recommendation to adapt your Flow? If yes, and you find that solution to be satisfactory, please go ahead and click “Accept as Solution” so that this thread will be marked for other users to easily identify!
Thank you for being an active member of the Flow Community!
-Gabriel
Flow Community Manager
In my case split(Triggerbody()['Email'],';')[0] worked which was the expression behind the reviewer field. when I used the reviewers dynamic content it for some reason would return the word reviewers and not the email addresses.
So I would say the answer got me there, however maybe this is flow issue for having to put (Triggerbody()['Email'],';')[0] ?
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Announcing a new way to share your feedback with the Power Automate Team.
User | Count |
---|---|
77 | |
19 | |
17 | |
14 | |
11 |
User | Count |
---|---|
133 | |
34 | |
31 | |
31 | |
24 |