Hey there
I have a SharePoint get items action and would like to filter it by a person field. Specifically, I'd like to filter it by the Email of that person field. How can I achieve that?
E.g.
my person field is called "participant". I'd like to filter get items only to show people matching the same email address as the one in the "participant" array.
The following options I've tried without success:
participant eq 'bla@bla.com' participant.Email eq 'bla@bla.com' participant.email eq 'bla@bla.com' participant.mail eq 'bla@bla.com
Cheers 🙂
Solved! Go to Solution.
Hi @FabianAckeret , I had been trying to figure this out myself so I was following your post until I finally came across the answer. The format is this:
Participant/EMail eq 'blah@blah.com'
Be sure the EMail part is exact - it is case sensitive
Hope this helps.
Hi @FabianAckeret , I had been trying to figure this out myself so I was following your post until I finally came across the answer. The format is this:
Participant/EMail eq 'blah@blah.com'
Be sure the EMail part is exact - it is case sensitive
Hope this helps.
Hey @Anonymous
Very kind of you to post this update. I highly appreciate it - and so do probably many others 🙂
Thank you!
This solved my 2 days effort w/o success. Thanks alot