Announcements
Is there a way for a label field to be populated from values coming from a combobox?
In the text box default property, write ComboBox1.Selected.Value,
this can display the value that is selected in the combobox in a text box.
Hope, this helps.
@lparkerMDVIP
There is definitely a way to display multiple values from your ComboBox in text field. Put this code in the Text property of your label or Default property of your TextInput
Concat(ComboBox1.SelectedItems, your_column_name & " ")
Or if you are only allowing a single value to beselected in your ComboBox do this instead.
ComboBox1.Selected.Value​
---Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Hi @lparkerMDVIP ,
Do you want to populate the Text Field (Label) within ComboBox Selected values?
Could you select multiple options within the ComboBox?
If you could select multiple options within the ComboBox, please set the Text property of the Label to following (I agree with @mdevaney 's thought almost):
Concat( ComboBox1.SelectedItems, DisplayColumn & "; " )
Note: The DisplayColumn represents the column you used as Display column value within the ComboBox.
Best regards,
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.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Valantis 421
WarrenBelz 345 Most Valuable Professional
Kalathiya 278 Super User 2026 Season 1