Skip to main content

Notifications

Community site session details

Community site session details

Session Id : lvFcQe1eAuGI8LOh3Ozpr2
Power Apps - Building Power Apps
Unanswered

Split Dropdown Value - Power App

Like (0) ShareShare
ReportReport
Posted on 29 Apr 2024 10:28:35 by 44

Hello. Does anyone know how to split Dropdown values? All three values come from 3 different columns.
Thanks! 


stayclassy_0-1714386305296.pngstayclassy_1-1714386366098.png

 

Categories:
  • DBO_DV Profile Picture
    4,534 Super User 2025 Season 1 on 29 Apr 2024 at 11:22:37
    Re: Split Dropdown Value - Power App

    Hey @stayclassy ,

     

    I understand what you are trying to do. You could replace it with a collection:

     

    ForAll(
     Filter(
     TableName,
     ColumnName=DatacardValue43_1.Selected.value
     ),
     Collect(colResult,{Value:Column1});
     Collect(colResult,{Value:Column2});
     Collect(colResult,{Value:Column3})
    )

     

    Like this you will have a table with one column as result. you can than use it in a Dropdown, Combobox or in a gallery with buttons for example.

     

     

  • stayclassy Profile Picture
    44 on 29 Apr 2024 at 11:15:02
    Re: Split Dropdown Value - Power App

    Without concatenate, it doesn't work at all. I've already tried. I must be doing something wrong.

    stayclassy_0-1714389112777.png

    My DropDown is located within an EditForm (Table X). I perform a filter on Table Y there. If DataCardValue43_1.Selected.Value (from Table X) is equal to ColumnZ (Table Y), list the values from columns A, B, and C.The values are listed only when I add Concatenate, but that's not a solution. The user must be able to select only one value from all the options offered.

     

  • DBO_DV Profile Picture
    4,534 Super User 2025 Season 1 on 29 Apr 2024 at 11:02:48
    Re: Split Dropdown Value - Power App

    Hey @stayclassy ,

     

    yes you can split it with the split function

    Split(Dropdown.Selected.Value,"-") // "-" is the seperator

    you'll get than a table with 1 column with the data in it. 

     

    You could also just not Concatenate it.

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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

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,670 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,011 Most Valuable Professional

Leaderboard