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 / Multi value choice col...
Power Apps
Suggested Answer

Multi value choice column in SP into powerapps

(0) ShareShare
ReportReport
Posted on by 714 Season of Giving Solutions 2025
Hi!
 
I am using a power apps but now I need to get the information from multiple choice column from sp. I had before it this: Gallery4_1.Selected.'UP Desti'
But now I need to change that the item selected in the gallery4_1, gets a multi value choice column instead the plain text it was getting earlier. The column name is "Proveidor".
Each choice should be separated with a enter, like one below the other.
 
What should be the control?
 
Thanks!
 
Categories:
I have the same question (0)
  • Power Platform Guy Profile Picture
    94 on at
     
    When a SharePoint column is a multiple‑choice column, Power Apps exposes it as a table of records, where each record has a Value field. That is why your old expression Gallery4_1.Selected.'UP Desti' worked when it was plain text, but no longer works after converting the column to multi‑choice.
     
    Use a Label (or an HTML Text control if you want better formatting).
     
    With(
        {
            _proveidors: Gallery4_1.Selected.Proveidor
        },
        Concat(
            _proveidors,
            Value & Char(10)
        )
    )
     
    ☑️Accept as Solution to help others 💙 A Like is appreciated ❓Tag @PowerPlatform Guy for any queries
  • Suggested answer
    Kalathiya Profile Picture
    1,756 Super User 2026 Season 1 on at

    Since "Proveidor" is now a multiple choice column, it returns a table instead of a single text value. To display each choice on a new line, you can use a Label control and format it using Concat.

    Example: 

    If you're showing the selected record outside the gallery
    Concat(Gallery4_1.Selected.Proveidor, Value, Char(10))
    
    //Gallery4_1 - Replace with your control if you are showing from the gallery then use your gallery control name
    
    Inside Gallery - Label Control
    Concat(ThisItem.Proveidor, Value, Char(10))
    Note: Set the label height to auto so it adjusts based on the text content.
     
    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? Just mention @Kalathiya and I’ll be happy to assist.

    ✔️ If this answer helped you, please tick “Does this answer your question?” so it can be marked as the Verified Answer.

    💛 A Like always motivates me to keep contributing!

  • Suggested answer
    MS.Ragavendar Profile Picture
    6,545 Super User 2026 Season 1 on at
     
    I am not sure is this your expectations.
     
    My Sample Data
     
    ClearCollect(
        colProcedures,
        {
            ID: 1,
            Name: "Procedure A",
            Provider: Table(
                { Value: "Hospital A" },
                { Value: "Clinic B" },
                { Value: "Lab C" }
            )
        },
        {
            ID: 2,
            Name: "Procedure B",
            Provider: Table(
                { Value: "Clinic D" },
                { Value: "Center E" }
            )
        }
    )
     
    Gallery & Label Control 
     
     
    Gallery Items Property ->  colProcedures ( here you can use the actual data source)
     
     
    Label (Text Property)
     
    With(
        {
            _Provider: Gallery1.Selected.Provider
        },
        Concat(
            _Provider,
            Value & Char(10)
        )
    )
     
     
     
     
     
    ✅If this helped, please Accept as Solution to help others ❤️ A Like is appreciated 🏷️ Tag @MS.Ragavendar for follow-ups.

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 490

#2
WarrenBelz Profile Picture

WarrenBelz 427 Most Valuable Professional

#3
Vish WR Profile Picture

Vish WR 381

Last 30 days Overall leaderboard