Hi @Double_v,
Could you please share a bit more about the scenario:
- how you set the Items of the dropdownbox ?(IMPORTANT)
- what is the column type of the column corresponding to the dropdownbox from your data source where you want to submit data to?
- is this dropdownbox a Combo Box or a Dropdown?
Do you want this dropdownbox to keep the static value always?
If you want this dropdownbox to keep a static value always, how you set the default value depends on how you set the Items property of the dropdownbox .
I have a similar test for you, please check as below.
In my scenario, I have a Choice column to store the Dropdown selected and I populate the Dropdown with a Text column from the linked list.
I just assume that you want keep the Combo Box display a static value always
I set the Combo Box Items as below:
Filter(LinkList,TextColumn="Value").TextColumn
Combo Box DefaultSelectedItems property:
LookUp(LinkList,TextColumn="Value")
Set the Update property of the data card:
DataCardValue4.Selected
Note that DataCardValue4 represents the Combo Box
Check if it could help you.
Regards,
Qi