+ Reply to Thread
Results 1 to 7 of 7

Inventory using Excel

  1. #1
    Registered User
    Join Date
    05-17-2016
    Location
    Philadelphia, PA
    MS-Off Ver
    2013
    Posts
    4

    Inventory using Excel

    This is in regards to this thread: http://www.excelforum.com/excel-gene...ing-excel.html

    The code provided in this thread worked really well. But, I am trying to figure out a way so that when a UPC code is scanned, thus changes the quantity for an item, the cursor moves to that specific cell where the quantity changes. So basically, I just need a Add&Find active cell combined. Is this possible? Any advice would be appreciated.

    Thank you!

  2. #2
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Inventory using Excel

    It took a bit of experimentation but here is what worked for me. I assumed that the cell that got changed was in the range "C1:C20". I simply put a change event on the sheet. Cells changed by formula will not trigger an event. But cells written to by VB code can trigger an event.
    Please Login or Register  to view this content.
    Target is the cell that changed.

    I used the following code to trigger it.
    Please Login or Register  to view this content.
    One spreadsheet to rule them all. One spreadsheet to find them. One spreadsheet to bring them all and at corporate, bind them.

    A picture is worth a thousand words, but a sample spreadsheet is more likely to be worked on.

  3. #3
    Registered User
    Join Date
    05-17-2016
    Location
    Philadelphia, PA
    MS-Off Ver
    2013
    Posts
    4

    Re: Inventory using Excel

    Thanks for looking into this! One more questions:

    Is there a way to have the cursor move to the changed cell ONLY when a new code is scanned, and therefore adding it to the bottom of the list. Here is what the code looks like now for ADDING to the inventory:


    Private Sub Worksheet_Change(ByVal Target As Range)
    Select Case Target.Address
    Case "$A$4" 'add
    If Target.Value <> "" Then
    On Error Resume Next
    Set xitem = Range("C8", Range("C" & Rows.Count) _
    .End(xlUp)).Find(Range("A4").Value)
    With xitem.Offset(0, -1)
    .Value = .Value + 1
    End With
    On Error GoTo 0
    If xitem Is Nothing Then
    With Range("C" & Rows.Count).End(xlUp).Offset(1, 0)
    .Value = Target.Value
    .Offset(0, -1) = 1
    End With
    End If
    Range("A4") = ""
    Range("A4").Select
    End If


    Thanks Again!

  4. #4
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Inventory using Excel

    It might go a bit easier if you also included a sample workbook. It is tough to see what you are doing from the code alone. I am thinking that we would have to search the existing columns to see if the value already exists and if it does add one to it, otherwise create a new record at the end. Is this what you are looking for?

  5. #5
    Registered User
    Join Date
    05-17-2016
    Location
    Philadelphia, PA
    MS-Off Ver
    2013
    Posts
    4

    Re: Inventory using Excel

    Got it, see attached.
    Attached Files Attached Files

  6. #6
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Inventory using Excel

    I think this will do what you want to do. The only thing I don't know how to address is when a new UPC is added, how do you get the Item Description? Is that done manually or by some other process?
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    05-17-2016
    Location
    Philadelphia, PA
    MS-Off Ver
    2013
    Posts
    4

    Re: Inventory using Excel

    Great, thanks! Yes this seems to work. I also found a relatively simple way to do this (see attached if anybody is interested). This moves the cursor to the position of the scanned UPC after adding, subtracting, or finding. But yeah, the only thing I can't figure out is how to get the cursor to move to the position of the added UPC when a new UPC is scanned/typed. If anybody can figure this out, please let me know!

    Thanks again
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Need Help with Inventory Sheet: Adding to the inventory and Logging
    By petg in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 09-09-2015, 02:26 PM
  2. Want to set Week End Inventory #s to load in Opening Inventory
    By tkeat1692 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-29-2013, 11:24 PM
  3. Barcode Inventory System - Running Inventory
    By b.dennis.79 in forum Excel General
    Replies: 2
    Last Post: 01-10-2013, 03:16 PM
  4. [SOLVED] Need remaining average inventory price after partial inventory is sold
    By Akano in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-04-2012, 04:12 AM
  5. Inventory Age Formula Needed for FIFO Inventory
    By SWeisser in forum Excel General
    Replies: 0
    Last Post: 07-20-2012, 02:44 PM
  6. FIFO Inventory- COGS & Inventory Valuation
    By aromaveda in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 09-24-2009, 02:05 AM
  7. Replies: 0
    Last Post: 10-04-2005, 08:05 PM

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