Hi @Dani77 ,
Have you resolved the issue?
If no, what column type is that column you would like to update, Text, Choices or else like LookUp?
If it is a Choices type column to be updated, please try below formula in the Button:
Patch(‘mylistname’, LookUp(‘mylistname’, Barcode = BarcodeScanner1.Value),{‘columnname’ : {
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",Value: Combobox.Selected}})
//or Dropdown.Selected,depending on the Controls you are using
If it is a LookUp column, please try below formula:
Patch(‘mylistname’, LookUp(‘mylistname’, Barcode = BarcodeScanner1.Value),{‘columnname’ : {'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id:Gallery1.Selected.ID,
Value:Gallery1.Selected.Title}
}
})
In addition, as per you mentioned that you could not refer to the column by typing in function bar, please notice that any time you have modified the data source, you will need to refresh the connection in Power Apps Studio.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.