Closed Thread
Results 1 to 23 of 23

Inventory using Excel

  1. #1
    Registered User
    Join Date
    10-07-2011
    Location
    NY, NY
    MS-Off Ver
    Excel 2003
    Posts
    3

    Inventory using Excel

    Had a quick programming question (newbie here)

    If I wanted to use excel to track inventory in/out, is there any way I can do the following?

    I have a barcode scanner and I wanted to be able to quickly add and subtract quantities.

    So,

    I want to create three fields at the top of list, one with the function to Add 1 to quantity, one to Subtract 1, and one simply to find (well I guess I can use excels find feature, but that would be an extra step)

    When I scan a barcode into the "Add 1 to quantity" field (which only appears at the top of the page), excel will automatically add 1 to the corresponding field next to the item that has that UPC number. The same for Subtracting 1.

    Thank you all so very much!

  2. #2
    Forum Contributor yay_excel's Avatar
    Join Date
    08-12-2011
    Location
    Canada
    MS-Off Ver
    2013
    Posts
    190

    Re: Inventory using Excel

    This doesn't sound too difficult but would you be able to upload an example workbook? Also what would happen if you opened a blank workbook, set A1 as the active cell, and started scanning a series of items?

  3. #3
    Registered User
    Join Date
    10-07-2011
    Location
    NY, NY
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Inventory using Excel

    Im afraid that I dont understand the second part of your post, but Ive attached a sample worksheet, I hope this will clarify what I am looking to do.
    Attached Files Attached Files

  4. #4
    Forum Contributor yay_excel's Avatar
    Join Date
    08-12-2011
    Location
    Canada
    MS-Off Ver
    2013
    Posts
    190

    Re: Inventory using Excel

    Okay, this code does what you need:
    Please Login or Register  to view this content.
    NOTES:
    1) This assumes that when you scan an item, it inputs the UPC code only into whichever cell is active in your workbook.
    2) Your workbook must look exactly like the example you provided. Specifically, the yellow boxes must remain in A4, C4, and E4 in order you specified and the UPC list must start in C8 with the descriptions and quantities in columns A and B.
    3) If you scan an item into the ADD box that is not on the UPC list, it is added to the bottom. The description will not be available unless you input it manually.
    4) If you scan an item into the REMOVE box that is not on the list, an error message will come up. If you scan an item that is on the list but has a quantity of 0 or less, it will allow the quantity to become negative without notifying the user. (I can modify this if you'd like.)
    5) If you scan an item into the FIND box that does not appear on the UPC list, an error message will come up. Otherwise, the UPC code will be selected wherever it is in the workbook.

    The code must be pasted into the module for the specific Worksheet you will be using. Let me know if you need help.
    Last edited by yay_excel; 10-12-2011 at 05:56 PM.

  5. #5
    Registered User
    Join Date
    10-07-2011
    Location
    NY, NY
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Inventory using Excel

    WOW!

    Thank you so much!

    I tested it briefly and it looks like its exactly what I was looking for- I will have to implement it in action to see if it works for me under real-life conditions.

    Thanks!

  6. #6
    Forum Contributor yay_excel's Avatar
    Join Date
    08-12-2011
    Location
    Canada
    MS-Off Ver
    2013
    Posts
    190

    Re: Inventory using Excel

    Glad to help.

  7. #7
    Registered User
    Join Date
    10-25-2011
    Location
    Iowa, USA
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Inventory using Excel

    I saw this forum and would just like to say thank you! I was looking for a very similar thing - this will help immensely!

    I had a few further questions... first, is there any way that you could add an error message when an item is scanned that is not on the UPC list?

    Second, would it affect anything if I added a few more columns of description to each item (as long as description, quantity, and UPC remain in the same columns)?

  8. #8
    Forum Contributor yay_excel's Avatar
    Join Date
    08-12-2011
    Location
    Canada
    MS-Off Ver
    2013
    Posts
    190

    Re: Inventory using Excel

    Here is the code modified to pop up an error rather than add the item if the scanned item is not already on the list.

    Please Login or Register  to view this content.
    Adding extra columns should not mess anything up as long as you keep the existing information in the same columns as you said. Attach the workbook as you'd like to use it if and I will modify the code accordingly if you'd like.

  9. #9
    Forum Expert ConneXionLost's Avatar
    Join Date
    03-11-2009
    Location
    Victoria, Canada
    MS-Off Ver
    2010
    Posts
    2,952

    Re: Inventory using Excel

    RachelWoods,

    Your post does not comply with Rule 2 of our Forum RULES. Don't post a question in the thread of another member -- start your own thread. If you feel it's particularly relevant, provide a link to the other thread.
    Would you like to say thanks? Please click the: " Add Reputation" button, on the grey bar below the post.

  10. #10
    Registered User
    Join Date
    01-25-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    1

    Re: Inventory using Excel

    Hi Newbie here just been reading this thread and wanted as how do I adding this module to my work sheet, As this work sheet is exactly what I am looking for to add and subtract stock of my items in the warehouse.

    I would be great-full if you could go through how to apply and add this macro to my module.

    Thanks again

  11. #11
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Inventory using Excel

    Copy the Excel VBA code
    Select the workbook in which you want to store the Excel VBA code
    Hold the Alt key, and press the F11 key, to open the Visual Basic Editor
    Choose Insert | Module
    Where the cursor is flashing, choose Edit | Paste

    To run the Excel VBA code:
    Choose View | Macros
    Select a macro in the list, and click the Run button
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  12. #12
    Registered User
    Join Date
    02-04-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2003
    Posts
    1

    Re: Inventory using Excel

    Hi,

    i am stuck with a similar problem and may i know where do i need to enter this code?

    Thank you

  13. #13
    Registered User
    Join Date
    02-25-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Inventory using Excel

    Hi there,

    Willing to pay to have someone implement a similar barcode inventory management solution for my small company. Just need the ability to add/ deduct from my existing account by simply scanning the barcode for the respective item.

    I know very little of macros within Excel and am eager to learn.

    Please feel free to pm or call me at 713-548-7851.

    Thanks!

  14. #14
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Inventory using Excel

    Jarron,

    Unfortunately you need to post your question in a new thread, it's against the forum rules to post a question in the thread of another user. If you create your own thread, any advice will be tailored to your situation so you should include a description of what you've done and are trying to do. Also, if you feel that this thread is particularly relevant to what you are trying to do, you can surely include a link to it in your new thread.

  15. #15
    Registered User
    Join Date
    02-24-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Inventory using Excel

    Hi, please help me with programming (newbie here). I run a small business and would like to keep track of inventory through excel. I have a barcode scanner and wanted to use it to add/subtract quantity. Thank you all so very much! I cannot upload my excel worksheet.

  16. #16
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Inventory using Excel

    Latitude,

    Unfortunately you need to post your question in a new thread, it's against the forum rules to post a question in the thread of another user. If you create your own thread, any advice will be tailored to your situation so you should include a description of what you've done and are trying to do. Also, if you feel that this thread is particularly relevant to what you are trying to do, you can surely include a link to it in your new thread.

  17. #17
    Registered User
    Join Date
    06-14-2013
    Location
    Reno, NV
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Inventory using Excel

    I have been trying to get the code to run and I am unable to. When I scan, the bar code comes up in the cell A4, but it does not populate down C12. Any sugguestions?

  18. #18
    Registered User
    Join Date
    06-14-2013
    Location
    Reno, NV
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Inventory using Excel

    I can not seem to ge the Macro to work. I scan, and nothing populated down below. Any ideas or sugguestions?

  19. #19
    Registered User
    Join Date
    09-16-2013
    Location
    Los Angeles Ca
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Inventory using Excel

    Why doesn't the code work when I add the module?
    The macro doesn't show up when i try to run it.
    Please help.

  20. #20
    Registered User
    Join Date
    12-11-2013
    Location
    nc
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Inventory using Excel

    This is perfect.
    I have one question. is there any way to record the changes made to say sheet 2. Say there is 1,000,000 items on the list and I want to allow changes to be made to this list but update another db with the changes manualy, daily but need to know what was done. is this possible?

  21. #21
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,610

    Re: Inventory using Excel

    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.

  22. #22
    Registered User
    Join Date
    09-22-2014
    Location
    yangon
    MS-Off Ver
    2010
    Posts
    6

    Re: Inventory using Excel

    Perfect.
    But I need a few changes so that it can fit with my work.

  23. #23
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Inventory using Excel

    Welcome to the forum.

    Pls read post#16.
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1