cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Siddz
Helper IV
Helper IV

Get ID from SharePoint list where fields match

I'd like to return the ID from the row in SharePoint List #2 where the "Employee Name" field matches the "Employee Name" field in List #1. I'll need to store that ID (to use for dynamic content as a parameter in a URL).

 

Here is the general outline of the process:

  • Get items from List #1
  • Get items from List #2
  • Look up from List #2 where the "Employee Name" field matches the "Employee Name" field from List #1
  • Return ID of that row
  • Store ID for reference in email body

Both "Employee Name" fields are SharePoint person fields. 

 

It seems pretty straightforward. I'm guessing I'll need to use a filter query, but I'm not sure how to construct it.

1 ACCEPTED SOLUTION

Accepted Solutions
Rhiassuring
Super User
Super User

Oh perfect, then, you don't even need to retain your data or store it for later. Do it right in your loop.


Get Items (with the filter query from earlier), then right in your email, you can put the dynamic content of the ID into the HTML, and your Employee Name Email into the "To" field. 

 

It'll end up looking like this (but I'm using Created By Email / DisplayName in place of where you'd have employee name)

 

 

Rhiassuring_1-1653609639561.png

 

You don't really NEED that last apply-to-each, if you want to spend the time and tack the [0] on to the end of each thingy, but .... it works, and it does no harm.  But really, that last ApplyToEach will only have a single output per person.

 

 

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



View solution in original post

12 REPLIES 12
Rhiassuring
Super User
Super User

Hi there, 

 

What's the trigger? If it's on List #1, you'll already have employee name - so all you need to do is use a Get Items on List #2 with the filter query of Employee Name eq 'Employee Name' (where the second employee name is dynamic content from the List #1 output for Employee Name, and the 's are written around the purple bit.) 

Then you'll just use the ID. You can put the ID into a variable. 

Are you doing this for one as triggered, or for multiple employees from List 1 in one run?

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



Thanks, @Rhiassuring.

 

This is a scheduled flow on List #1. For the filter query on the Get Items for List #2, do you know how I would store the ID after filtering the Get Items for List #2?

 

Recurrence-Flow.jpg

Not that it's relevant here, but the getPastTime() expression is:

getPastTime(1,'week','MM-dd-yyyy')
Rhiassuring
Super User
Super User

Hmm, well, it depends what you're going to do with it. I see you're going to use it as a parameter for a URL, but, will you have all of the collected IDs in a single URL parameter, or will you generate a URL for each person dependent on that? 

If the latter, then I'm guessing you're also going to want to connect the ID you get to the email address, so you'll probably want to build an array. 

So if you initialize an Array at the top of your flow, then after your Get Items, you can do "Append to Array" and do something like this:

 

{

"Email":"dynamic content of users email",

"URL":"www.URL.com/whatever?ID=DYNAMICCONTENTID"
}

 

That way, outside of your apply to each, you can send the email to each person ............... ..........but now that I've said that, I don't know why you wouldn't just send it right there in the loop, and not need to hold the data at all.

 

Errr. I've overcomplicated it. Can you tell me what your URL outcome looks like? Is it 1 URL per person, sent to each person? Is it 1 URL per person with all URLs in a single email with their name? What does the output look like?

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



Thanks, @Rhiassuring.

 

  • The first Get Items returns a handful of employees from List #1 (using a filter query).
  • The second Get Items returns all employees from List #2.
  • Both lists have an identical column called "Employee Name" (SharePoint person field)
  • I'd like to get the List #2 row ID for each employee returned in List #1.

 

My goal is to place a link to the employee's record (in List #2) so I can dynamically put that ID in the body of an email action. The ID will be part of a URL parameter so Power Apps can deep link to a specific record.

 

// Would like to dynamically insert the employee's ID from List #2
<a href="https://www.powerAppURL.com&Parameter=ID">View Employee's Profile</a>

 

Rhiassuring
Super User
Super User

Okay - and, will there be multiple in a single email? Ie, 

 

<a href="https://www.powerAppURL.com&Parameter=ID">View Sidzz' Profile</a>
<a href="https://www.powerAppURL.com&Parameter=ID">View Rhia's Profile</a>

 

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



Thanks, @Rhiassuring.

 

Each email will have a single URL:

<a href="https://www.powerAppURL.com&Parameter=ID">View Siddz's Profile</a>

 

I'd like the scheduled flow to generate one reminder email per employee from List #1. 

Rhiassuring
Super User
Super User

Oh perfect, then, you don't even need to retain your data or store it for later. Do it right in your loop.


Get Items (with the filter query from earlier), then right in your email, you can put the dynamic content of the ID into the HTML, and your Employee Name Email into the "To" field. 

 

It'll end up looking like this (but I'm using Created By Email / DisplayName in place of where you'd have employee name)

 

 

Rhiassuring_1-1653609639561.png

 

You don't really NEED that last apply-to-each, if you want to spend the time and tack the [0] on to the end of each thingy, but .... it works, and it does no harm.  But really, that last ApplyToEach will only have a single output per person.

 

 

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



Thanks, @Rhiassuring. I appreciate your assistance!

 

I think it's getting there, but there's an issue with one of the "Apply to each" loops.

 

List #1 has six total items (rows) whereas List #2 has 25 items. Instead of generating six emails as intended, the flow is generating 25 emails (I replaced the email address for "Employee Name" with my email address for testing purposes, so I received 25 emails instead of the employees).

 

I will keep tinkering with it, but I welcome any advice. Thanks!

 

Flow-Structure.jpg 

Thanks, @Rhiassuring!

 

Got it working by adding a filter query when retrieving List #2:

EmployeeColumn/EMail eq 'Employee Email'

// "EmployeeColumn" is the person field from List #2
// "Employee Email" is the employee's dynamic content email address from List #1

Appreciate the help!

 

Flow-Filter-Query.jpg

Rhiassuring
Super User
Super User

OH so there are multiple entries in List #2 for the Employee Name?


Wait I'm confused, I'm definitely missing something. 

 

6 employees in list #1. 

 

25 employees in list #2. 

 

If there are only unique employees in List #2, I wouldn't expect 25 emails, I'd expect 6. 


If there are multiple entries for employees in List #2, then you'd have multiple IDs, which means.. multiple URL? 

hahah sorry if I'm missing something obvious..

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



Rhiassuring
Super User
Super User

OH

Okay your update (you posted at the same time as me haha) makes sense. 

HOORAY!

 

kermit-frog.gif

______________________________________________________________


Did this answer your question? Please mark it as the solution.
Did it contribute positively towards finding the final solution? Please give it a thumbs up.

I answer questions on the forum for 2-3 hours every Thursday!



Yeah, I think we were posting at the same time. 🙂 

 

I apologize. I meant to say List #1 has six employees who match the filter criteria from the first Get Items. The list itself has hundreds of rows.

 

I couldn't figure out how to grab the ID for the records in List #2, but your approach worked great!

Helpful resources

Announcements

Power Platform Connections - Episode 7 | March 30, 2023

Episode Seven of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft MVP Dian Taylor, alongside the latest news, product reviews, and community blogs.     Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!      Show schedule in this episode:    0:00 Cold Open 00:30 Show Intro 01:02 Dian Taylor Interview 18:03 Blogs & Articles 26:55 Outro & Bloopers    Check out the blogs and articles featured in this week’s episode:    https://francomusso.com/create-a-drag-and-drop-experience-to-upload-case-attachments @crmbizcoach https://www.youtube.com/watch?v=G3522H834Ro​/  @pranavkhuranauk https://github.com/pnp/powerapps-designtoolkit/tree/main/materialdesign%20components @MMe2K​ https://2die4it.com/2023/03/27/populate-a-dynamic-microsoft-word-template-in-power-automate-flow/ @StefanS365 https://d365goddess.com/viva-sales-administrator-settings/ @D365Goddess https://marketplace.visualstudio.com/items?itemName=megel.mme2k-powerapps-helper#Visualize_Dataverse_Environments @MMe2K    Action requested:  Feel free to provide feedback on how we can make our community more inclusive and diverse.    This episode premiered live on our YouTube at 12pm PST on Thursday 30th March 2023.    Video series available at Power Platform Community YouTube channel.    Upcoming events:  Business Applications Launch – April 4th – Free and Virtual! M365 Conference - May 1-5th - Las Vegas Power Apps Developers Summit – May 19-20th - London European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas    Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community    If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.       

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.  Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash  ScottShearer     Rusk  ChristianAbata     cchannon  Koen5     a33ik  Heartholme     AaronKnox  okeks      Matren   David_MA     Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg    rubin_boer   cwebb365   Dorrinda   G1124   Gabibalaban   Manan-Malhotra   jcfDaniel   WarrenBelz   Waegemma   drrickryp   GuidoPreite    If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Register now for the Business Applications Launch Event | Tuesday, April 4, 2023

Join us for an in-depth look into the latest updates across Microsoft Dynamics 365 and Microsoft Power Platform that are helping businesses overcome their biggest challenges today.   Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating, and creating using AI-powered capabilities, driving productivity with automation—and building towards future growth with today’s leading technology.   Microsoft leaders and experts will guide you through the full 2023 release wave 1 and how these advancements will help you: Expand visibility, reduce time, and enhance creativity in your departments and teams with unified, AI-powered capabilities.Empower your employees to focus on revenue-generating tasks while automating repetitive tasks.Connect people, data, and processes across your organization with modern collaboration tools.Innovate without limits using the latest in low-code development, including new GPT-powered capabilities.    Click Here to Register Today!    

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.   Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Users online (1,343)