Transfer barcode info to inventory quantity

Solved/Closed
osborns9 - Mar 14, 2011 at 12:56 PM
 osborsm - Mar 22, 2011 at 12:33 PM
Hello,

Is there a way to create a macros that would keep track of inventory quanitity by scanning a barcode? I have many boxes that have barcodes to represent the different bottles of each box - for example, all of the A bottles have the same bar code, all of the B bottles have the same barcode, etc.

Here's an example of what I'm trying to do:
I'm trying to create an inventory spreadsheet where I start out with a quantity of let's say 500 boxes of "A" in the B column (column A would be the "A" barcode), and when I scan the barcode for "A", the quantity of "A" in the B column would decrease by 1 (making the total quanitity 499).

Thanks!

Related:

1 response

shootingfish Posts 14 Registration date Sunday February 6, 2011 Status Member Last seen September 1, 2011 1
Mar 21, 2011 at 03:22 PM
I have limited experience of retail Point of Sale systems, but I think i have seen something that might be of use to you.

Barcode scanners that interact with excel are usually programmed to enter the code in the active cell and then "press enter" so to speak so that the next cell down is selected. I guess this is how yours is working too. The retailer using this had two workbooks, a sales sheet and an inventory and so long as they were both open at the same time the inventory was being updated on a live basis.

It used a macro that was attached to the "press enter" event. It would effectively look at the number that had just been entered and count the number of instances of it in the list. Then it would match the code with the list of codes in the inventory sheet. Predictably, the next step would be to subtract the countif result from the inventory number.

Is this the kind of Macro that you would need or am I getting the wrong end of the stick?
1
Hi, Thanks for responding, I did however find the answer to my question here:
http://www.mrexcel.com/forum/showthread.php?t=477285&goto=nextnewest

What you are talking about though is sort of what I was looking for except I wanted to both add and subtract 1 from the inventory utilizing two different cells.
0