Hi @jwwalker
Could you please share more about your scenario? Which column and record do you want to save the barcode value to?
1. Create a Text column, e.g "BarcodeValue", in the SP list to store the barcode value if there is not.
2. If you want to save the barcode value to an existing record, for example, the first record, please set OnSelect of Button as below
Patch( 'SP list', First( 'SP list' ), { BarcodeValue: BarcodeScanner1.Value } )
3. If you want to save the barcode value to a new record, please set OnSelect of Button as below
Patch( 'SP list', Defaults( 'SP list' ), {Title:"Test", BarcodeValue: BarcodeScanner1.Value } ) // In general, Title is the required columns
Hope this helps. Please feel free to post back if there is any question.
Sik