
Announcements
I have two columns of interest on my SharePoint list: ID and Name. I want to show the combined value of these two columns in the items of my combobox. I am using a combobox just like a drop-down (Single Select), but I am using this in order to have the ability to search through the item options.
What I really want is to show items in my combobox as concatenated values from those two columns separated by a dash (-).
So, if the records in the datasource for these two columns are like: ID: {100, 101, 102}, Name: {Joe, Doe, John}, then the resultant items in the combobox should be like items: {100 - Joe, 101 - Doe, 102 - John}
Hi @uncharted_9
Plz try this function formula in Combo Box item Property,
ForAll('YourDataSource', Concatenate(ID, " - ", Name))
Thanks!
---------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved & give Thumps Up to my solution.