I have an app that is scanning barcode numbers into a collection and looking up data. Where I'm stuck is on the first item. How can you search a "Code" column on the first scan if the collection has not added the first item yet.
I've tried doing ClearCollect(colScannedStuff, Blank()), but is there a way to get a named column to search but the collection still be empty? Or is there a better way to go?
The goal is to take scans of additional of the same items and increment a quantity rather than duplicate the line. Prior to Collecting, do a lookup to see if it's there already. If so, add to the quantity column.