+ Reply to Thread
Results 1 to 18 of 18

Using Barcode scanner to search through sheet with existing SKUs

  1. #1
    Registered User
    Join Date
    01-02-2021
    Location
    Chicago, IL
    MS-Off Ver
    2020
    Posts
    4

    Using Barcode scanner to search through sheet with existing SKUs

    I have seen a few posts on this, but can't find a specific solution for what I'm looking for. I work in a retail environment where we conduct daily counts, and do so on an excel sheet.

    We currently call out the first 4 digits of a given barcode, and enter the quantity into one of two columns. We have a sales floor, and a vault, and need the quantity in both to be accurate in accordance with our records. The main thing I am hoping to accomplish, is to use a barcode scanner to find a SKU, and allow us to populate the cell in column G, then Column H.

    I have experimented with ctrl+F and it is a bit too clunky to work efficiently for our flow. Thanks in advance for any help on this!
    Attached Files Attached Files

  2. #2
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,905

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Hi, welcome to the forum.
    If you have a barcode scanner there's also software to read the data and for example use it in Excel.
    You will have to implement and use macros, these will do the Ctrl+F for you and then of course you need some code to write.
    ---
    Hans
    "IT" Always crosses your path!
    May the (vba) code be with you... if it isn't; start debugging!
    If you like my answer, Click the * below to say thank-you

  3. #3
    Forum Expert sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2016 | 2019
    Posts
    13,239

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Do your products already have the barcode stickers on?
    I assume Package Id is the Sku No...
    Floor & Vault same as Front & Back Stock?...
    We currently call out the first 4 digits of a given barcode
    When you say call out...do you mean capture or enter...
    Are the first 4 digits unique with every product...
    Last edited by sintek; 01-03-2021 at 05:02 AM.
    Good Luck
    I don't presume to know what I am doing, however, just like you, I too started somewhere...
    One-day, One-problem at a time!!!
    If you feel I have helped, please click on the star to left of post [Add Reputation]
    Also....add a comment if you like!!!!
    And remember...Mark Thread as Solved.
    Excel Forum Rocks!!!

  4. #4
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,905

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Sintek, a barcode scanner does need the barcode font, some scanners have their software that reads the barcode and you can use it to find a value in for example Excel that's just tet like any other and all you need is to implement it a macro.
    But all barcode scanners have their own software s it's not a 1-2-3 answer for the OP

  5. #5
    Forum Expert sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2016 | 2019
    Posts
    13,239

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Sintek, a barcode scanner does need the barcode font
    Hans you are so right...Just tested that...
    I assume OP justs wants to enter the first 4 digits of the sku code and code to make use of wildcard search and update...

  6. #6
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,905

    Re: Using Barcode scanner to search through sheet with existing SKUs

    well, but that again is possible if you can get the string into a variable you can search for any occurrence of that string or part in a field

  7. #7
    Forum Expert sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2016 | 2019
    Posts
    13,239

    Re: Using Barcode scanner to search through sheet with existing SKUs

    saltymalty...Give this a go...
    On opening Scanning box pops up...
    Enter stock counts in two boxes and then enter first 4 sku digits in scanning box and press enter...
    Please Login or Register  to view this content.
    Attached Files Attached Files
    Last edited by sintek; 01-03-2021 at 05:21 AM.

  8. #8
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,905

    Re: Using Barcode scanner to search through sheet with existing SKUs

    What if the 4-digits are already present?

  9. #9
    Forum Expert sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2016 | 2019
    Posts
    13,239

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Quote Originally Posted by Keebellah View Post
    What if the 4-digits are already present?
    Assumes first 4 digits are unique...
    Also, as this is a daily count...OP has not mentioned whether values are overwritten or incremented...
    Can only wait until a response I suppose...
    Guess one will also have to incorporate error trapping if less than 4 or more than 4 digits is entered...

    Please Login or Register  to view this content.
    Last edited by sintek; 01-03-2021 at 07:04 AM.

  10. #10
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,905

    Re: Using Barcode scanner to search through sheet with existing SKUs

    @sintek: just an observation. I didn't check for it, but the updating worked great.
    I added a barcode with the same 4 last digits as test and it doesn't do anything

  11. #11
    Forum Expert sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2016 | 2019
    Posts
    13,239

    Re: Using Barcode scanner to search through sheet with existing SKUs

    I added a barcode with the same 4 last digits as test and it doesn't do anything
    Should only capture if wildcard was placed before
    Please Login or Register  to view this content.

  12. #12
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,905

    Re: Using Barcode scanner to search through sheet with existing SKUs

    first one worked without wildcard, that's why I asked, but still the OP can work it out

  13. #13
    Forum Expert sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2016 | 2019
    Posts
    13,239

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Oh, Now I get it...just tested...
    Red snippet must be xlWhole
    Please Login or Register  to view this content.
    New file attached....
    Attached Files Attached Files

  14. #14
    Forum Expert Keebellah's Avatar
    Join Date
    01-12-2014
    Location
    The Netherlands
    MS-Off Ver
    Office 2021 (Windows)
    Posts
    7,905

    Re: Using Barcode scanner to search through sheet with existing SKUs


    I was just curious, but honestly, did not think of looking at the code itself

  15. #15
    Registered User
    Join Date
    01-02-2021
    Location
    Chicago, IL
    MS-Off Ver
    2020
    Posts
    4

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Quote Originally Posted by sintek View Post
    Do your products already have the barcode stickers on?
    I assume Package Id is the Sku No...
    Floor & Vault same as Front & Back Stock?...

    When you say call out...do you mean capture or enter...
    Are the first 4 digits unique with every product...
    Thanks for the response,

    Yes front and back stock is what we're working with. The items do have barcode labels, we just currently say the first four digits of a sku and find in our sheet. Looking to eliminate that process by scanning and receiving a prompt for quantity entry.

    Sorry for the delay here, and thanks for the response!

    To clear up the confusion on the first four. That is our current process for ease of access, but we are looking to scan and lookup the ENTIRE SKU in the sheet. Could you clarify what you mean by overwritten vs incremented?

    If you look at the example sheet, we need to verify that current stock matches the number in column F. So there would need to be a way to scan an item, entire the amount in the given location (front or back stock), and move on.
    Last edited by saltymalty; 01-18-2021 at 02:47 PM. Reason: Adding Quote

  16. #16
    Registered User
    Join Date
    01-02-2021
    Location
    Chicago, IL
    MS-Off Ver
    2020
    Posts
    4

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Sorry for the delay here, and thanks for the response!

    To clear up the confusion on the first four. That is our current process for ease of access, but we are looking to scan and lookup the ENTIRE SKU in the sheet. Could you clarify what you mean by overwritten vs incremented?

    If you look at the example sheet, we need to verify that current stock matches the number in column F. So there would need to be a way to scan an item, entire the amount in the given location (front or back stock), and move on.

  17. #17
    Registered User
    Join Date
    01-02-2021
    Location
    Chicago, IL
    MS-Off Ver
    2020
    Posts
    4

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Quote Originally Posted by sintek View Post
    Oh, Now I get it...just tested...
    Red snippet must be xlWhole
    Please Login or Register  to view this content.
    New file attached....
    This is awesome!! Thanks so much for putting this together. I am a total VBA noob, how could i go about editing the textbox so that it can accept the full SKU?

  18. #18
    Forum Expert sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2016 | 2019
    Posts
    13,239

    Re: Using Barcode scanner to search through sheet with existing SKUs

    Apologies...was away for a couple weeks...
    Remove this part...
    Please Login or Register  to view this content.
    Change this part...
    Please Login or Register  to view this content.
    to
    Please Login or Register  to view this content.

+ 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. Help Setting Up Inventory Sheet to be used with a Barcode Scanner
    By atmclaurin in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-29-2020, 10:14 AM
  2. Replies: 3
    Last Post: 02-13-2020, 02:15 PM
  3. Replies: 4
    Last Post: 08-25-2017, 01:39 PM
  4. Replies: 0
    Last Post: 03-17-2017, 10:52 AM
  5. Replies: 25
    Last Post: 08-03-2015, 03:32 AM
  6. Replies: 5
    Last Post: 08-14-2014, 10:45 PM
  7. Using a barcode scanner and UPC master sheet for Inventory Control
    By jlucas in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-21-2011, 04:03 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