Hi@MostafaGamal,
Based on the issue that you mentioned, do you want to patch Dropdown selected to the SP list?
Could you please share a bit more about the scenario:
- are those columns corresponding to the Dropdown Choices type?
- do you want to create new records or update the existing records?
I assume that those are Choices type and you want to create new records.
I have a test on my side, please take a try as below.
Set the Items property of the Dropdown as:
Items property: Choices(Safe.Safe111)
Default property: LookUp(Safe,ID=ThisItem.ID).Safe111.Value
Add a Button and set the OnSelecte property as below:
Patch(
Safe,
Defaults(Safe),
{
Safe111: {Value: Dropdown1.Selected.Value},
Safe222: {Value: Dropdown2.Selected.Value}
}
)
Note: If those columns corresponding to the Dropdown are Text type, you could modify the formula as below:
Patch(
Safe,
Defaults(Safe),
{
Safe111: Dropdown1.Selected.Result,
Safe222: Dropdown2.Selected.Result
}
)
Hope it could help you.
Best Regards,
Qi