
Announcements
I have a combo box with a list of document series. When one is selected, I would like it to populate a name in the text input field.
Example:
Combo Box: Name:
Management(1000) - Jane Smith
General(85000) - John Smith
When management is selected, I would like the text input field to populate Jane Smith.
Hi @MicroMarc365 ,
I will generate a collection to store your demo data and deploy it as data source of the combo box:
ClearCollect(AA,{Title:"Management(1000)",Name:" Jane Smith"},{Title:"General(85000)",Name:"John Smith"})
Suppose your combo box name is ComBox1,
Set your Text Input's default to:
ComboBox1.Selected.Name
Community Support Team _ Wenjuan Zou
If this post helps, then please consider Accept it as the solution to help the other members find it.