Patch A SharePoint Choice Column In Power Apps
Use case
Update a SharePoint choice field.
Code
Patch(
'Data Source',
LookUp(
'Data Source',
ID=1
),
{
SPFieldName: {Value: ComboBox_Control.Selected.Text}
}
)
Update a SharePoint choice field.
Patch(
'Data Source',
LookUp(
'Data Source',
ID=1
),
{
SPFieldName: {Value: ComboBox_Control.Selected.Text}
}
)