UPDATE Table1 SET Table1.quantity = [table1]![quantity]+1
WHERE (((Table1.barcode)=[enter barcode]));
is this query string rite to add a number to the stock of a certian barcode and what kind of validation can be done to check if the barcode exists?
WHERE (((Table1.barcode)=[enter barcode]));
is this query string rite to add a number to the stock of a certian barcode and what kind of validation can be done to check if the barcode exists?