web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Concat and ForAll mult...
Power Apps
Suggested Answer

Concat and ForAll multiple selection combobox to text box

(2) ShareShare
ReportReport
Posted on by 113
Hi Guys, I need the correct formula to get all the lookup data from the multiple selection comboxbox. Currently I can only get the first lookup, but I need all of the lookups to be included in a textbox. I know you can use concat, but I cannot seem to get the formula correct to do this. Please help me include concat and FoAll in the below to get the result. 
 
LookUp(MasterGlobalProcessContacts, cbGPONameWT.Selected.Process = Process, 'GPO Email'.DisplayName)
Categories:
I have the same question (0)
  • Suggested answer
    Haque Profile Picture
    3,653 on at
    Hi @iKettle,
     
    For multi-select ComboBox - to bring a textbox, we can use Concat combined with ForAll like this
    Concat(
        ForAll(
            cbGPONameWT.SelectedItems,
            LookUp(MasterGlobalProcessContacts, Process = Process, 'GPO Email'.DisplayName)
        ),
        DisplayName,
        "; "
    )
    
     
     

    I am sure some clues I tried to give. If these clues help to resolve the issue brought you by here, please don't forget to check the box Does this answer your question? At the same time, I am pretty sure you have liked the response!
  • Suggested answer
    Kalathiya Profile Picture
    2,456 Super User 2026 Season 1 on at
    Hello @iKettle,
     
    You can achieve this without using ForAll by combining Filter and Concat. Please follow below code:
    Concat(
        Filter(
            MasterGlobalProcessContacts,
            Process in cbGPONameWT.SelectedItems.Process
        ),
        'GPO Email'.DisplayName,
        "; "
    )
    Using this method is simple, efficient, and handles multiple selections easily.
     
    If this response resolves your issue, please mark it as the Verified Answer so it can help other community members as well.
    ---------------------------------------------------------------------------------
     
    📩 Need more help? Mention @Kalathiya anytime!
    ✔️ Don’t forget to Accept as Solution if this guidance worked for you.
    💛 Your Like motivates me to keep helping!
  • Haque Profile Picture
    3,653 on at
    Hi @iKettle,
     
    I was following up on this, is the issue resolved?

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

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard