I have a combo box populated with items from two sql columns. The display/field property is set like so...
["PRM_ML","PRM_CD"]
The ComboBox...
The two combined fields need to be save as one value in the record set but I'm not sure how to write the Update property.
I tried multiple combinations of syntax with no luck.
MainFabric_ComboBox.SelectedItems.PRM_ML,PRM_CD
Please help
Solved! Go to Solution.
MainFabric_ComboBox.Selected.PRM_ML & MainFabric_ComboBox.Selected.PRM_CD
It is unclear if your combobox support multiple selection (in this case the above formula will not work)
Hope it helps !
MainFabric_ComboBox.Selected.PRM_ML & MainFabric_ComboBox.Selected.PRM_CD
It is unclear if your combobox support multiple selection (in this case the above formula will not work)
Hope it helps !
@gabibalaban...Thank you for the feedback. I did not try that syntax. I also forgot to mention the combobox is NOT set for multiple selections. This solution works. Thanks again!
You can do this with a multi-select combobox: Replace 'yourcomboboxvaluehere' and 'YourComboBoxValue' with the value property of your combobox.
Concat(MainFabric_ComboBox.SelectedItems.yourcomboboxvaluehere, YourComboBoxValue & ", ")
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
198 | |
72 | |
50 | |
41 | |
30 |
User | Count |
---|---|
256 | |
113 | |
95 | |
91 | |
75 |