Hi @Anonymous ,
Which formula do you use to submit your data back to data source? SubmitForm function or Patch function?
If you want to display the Dropdown selected value within a Label, please set the Text property of the Label to following:
Dropdown1.Selected.Value
If you want to submit your data back to your data source using SubmitForm function, you should bind the Dropdown selected value with proper field from your data source. Set the Default property of the field Text Input box in your Edit form to following:
Dropdown1.Selected.Value
If you use Patch function to submit your data back to your data source, please try the following formula:
Patch(
'Your Data Source',
Defaults('Your Data Source'),
{
FieldName: Dropdown1.Selected.Value
}
)
Best regards,