Announcements
Hello. Does anyone know how to split Dropdown values? All three values come from 3 different columns.Thanks!
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.
Without concatenate, it doesn't work at all. I've already tried. I must be doing something wrong.
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.
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.
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.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 536
WarrenBelz 426 Most Valuable Professional
Haque 305