Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Unanswered

Dependency on SharePoint lookup column

(1) ShareShare
ReportReport
Posted on by 21

Dear Community Members,

I have a Lookup column in SharePoint list A that I am using in a combobox in PowerApps to display a list of crew names from SharePoint list B.

 

When user selects multiple crew names, I want the app to find their email addresses from list B and save them with my record. This would be hidden from user.

 

How do I get the email addresses into PowerApps form and what type of column would I save the data to in SharePoint?

 

Thank you!

  • Ami K Profile Picture
    15,665 Super User 2024 Season 1 on at
    Re: Dependency on SharePoint lookup column

    @michelledroll1 - create a Single Line Text column in your SharePoint List and add that field as a DataCard into your EditForm control. On the Update property of this DataCard, use:

     

    Concat(
     ForAll(
     'Your ComboBox'.SelectedItems As selecteditems,
     LookUp(
     'SharePoint List B',
     ID = selecteditems.Id,
     'Your Email Field'
     )
     ),
     Value,
     ";"
    )

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,605 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,946 Most Valuable Professional

Leaderboard