Hi @4Him,
Do you want to display the Combo Box selected value within a Label?
Could you please tell me that how you set the Items property of the Combo Box?
Actually, each dropdown like Combo Box or Dropdown Box, they reference to a specific column following the dropdown.Selected.
If you populate the dropdown box with a Choice column, then you should reference to the column named Value by default like dropdown.Selected.Value
If you populate the dropdown box with a Text column and you set the Items property of the dropdown box with something like ListName.TextColumn, then you should reference to the text column name directly like dropdown.Selected.TextColumn
So if you set the Combo Box Items property using Choice() function, please set the Label Text property as below:
ComboBox1.Selected.Value
If you set the Combo Box Items property using ListName.TextColumn or Distinct(), please set the Label Text property as below:
ComboBox1.Selected.TextColumn// Set Combo Box Items with ListName.TextColumn
ComboBox1.Selected.Result//Set Combo Box Items with Distinct()