Hi @sindhureddy,
Do you want to update a certain record based on the ReqId?
Could you please tell me that how you set the Items property of the Drodpown inside the Gallery?
Do you use the Dropdown box instead of the Combo Box?
1). If the TrainerName column is a Choice, please set the OnSelect property of the update button as below:
Patch(YourList,LookUp(YourList,ReqId=5),{TrainerName:{Value:Dropdown_OutGallery.Selected.Value}}
Set the Default property of the Dropdown as below:
ThisItem.TrainerName.Value
2). If the TrainerName column is a Text, please set the OnSelect property of the update button as below:
Patch(YourList,LookUp(YourList,ReqId=5),{TrainerName:Dropdown_OutGallery.Selected.Result}​
// I assume that you set the ComboBox inside the Gallery using Distinct()
Set the Default property of the Dropdown as below:
ThisItem.TrainerName