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 / Power Apps combo box m...
Power Apps
Answered

Power Apps combo box multi select display - not ideal

(0) ShareShare
ReportReport
Posted on by 893 Super User 2026 Season 1
Hello!
 
I'm assisting a Maker build an app which will be on user's mobile devices. There is only one field which has to be selected. It is a multi-choice column in Dataverse. The control is a Combo Box, modern, I think.
The combo box is to 'Select Areas You Checked'. See screen shots.
 
The user experience when more than one value is selected is not ideal. The text just runs together.
 
Does anyone have any recommendation to improve this? Different control? Different solution approach?
 
Maker tried the classic combo box, and it is not much better and doesn't even show the selections if four are chosen.
I suppose we could customize a gallery for selection, but Maker was interested in exploring options.
 
Appreciate any assist!
 
 
Categories:
I have the same question (0)
  • Verified answer
    MVP-Phipps Profile Picture
    3,521 Super User 2024 Season 1 on at

    Leave the modern Combo Box for picking, but don’t rely on its collapsed text. Add a label (or HTML text) under the control to render the selected items as a bulleted list that wraps nicely.

    Controls

    • ComboBoxAreas (your existing control, SelectMultiple = true)

    • lblAreasSummary (Label, AutoHeight = true)

    •  

    Label.Text

    If(
        IsEmpty(ComboBoxAreas.SelectedItems),
        "No areas selected",
        "Selected:" & Char(10) &
        Concat(ComboBoxAreas.SelectedItems, "• " & Value, Char(10))
    )
    

    Why? You keep search and multi‑select behavior of Combo Box, but give users an accessible, scannable list. (Tip: set the label’s Live to Polite and a meaningful AccessibleLabel for screen readers.) 

    Variation: Use an HTML text control and render an unordered list:

    "<ul style='margin:0;padding-left:18px'>" &
    Concat(ComboBoxAreas.SelectedItems, "<li>" & Text(Value) & "</li>") &
    "</ul>"
    If this helps, please like. If this solves the problem, mark as a solution

    Follow me on LinkedIn: https://www.linkedin.com/in/charlie-phipps-bennett-%F0%9F%91%A8%E2%80%8D%F0%9F%92%BB-91338715b/

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