Is there a way for a label field to be populated from values coming from a combobox?
Solved! Go to Solution.
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,
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.
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,
User | Count |
---|---|
252 | |
101 | |
94 | |
47 | |
38 |