Ok, Sorry for the mess.
First thing first:
The parameters for my QR Code are like this:
HtmlText =
varRecord.MID& Char(10)&"ID: " &varRecord.Title & Char(10)&DataCardValue2&" Lbs" & Char(10) &"CreatedBy: " &varRecord.Employee
This value is placed at the end of my Image property like this:
"https://chart.googleapis.com/chart?cht=qr&chs=300x300&chl="&QRdata
That is how is generated the QR Code.
Now to read the QR Code I have my app
Button Scan
On Scan = Collect(collectMultiScan, {Barcodeinfo: BarcodeScanner.Value})
I have a Gallery =
Item = CollectMultiscan
In my Gallery I have 2 labels so far trying to split the QR Code Code
Label1 = Left(ThisItem.Barcodeinfo, Find(" ", ThisItem.Barcodeinfo)-1)
Label2 = Right(ThisItem.Barcodeinfo, Find("CreatedBy:", ThisItem.Barcodeinfo)+2)
And I have a button to patch my gallery
Submit =
ForAll(collectMultiScan, Patch(TallySheet, Defaults(TallySheet),{Title:Label1.Text, Operator:Label2.Text}));Clear(collectMultiScan)
This is what I have. I just need to patch my SPL "TallySheet" with all the values in my gallery matching Title = Title, Operator = Operator.
Make sense?
Sorry again