+ Reply to Thread
Results 1 to 3 of 3

Finding a serial number in a list of serial numbers

  1. #1
    Registered User
    Join Date
    02-04-2009
    Location
    Sweden
    MS-Off Ver
    Excel 2003
    Posts
    1

    Finding a serial number in a list of serial numbers

    Hi,
    I'm trying to implement a function in my excel sheet without much success this far. Would be very happy if anyone could help me out here.

    What I'm trying to do:
    I have a list in an excel sheet where I write in instruments that I receive for repair with their serial numbers. The serial numbers can have the shape of GS2-05040023 or simply a number like 1033 and so on. On a different tab in the sheet, I want to be able to write a list of serial numbers that have special properties, i.e. this instrument needs this certain handling. I would preferably not want to sort these in any particular order, just add them in the bottom of the list all the time. When I then write a serial into my main list, I want a cell next to the just written serial to show whether this serial is in the "special" list, to make me go there and check what I need to consider for this individual.

    Don't know whether this explanation is clear for anyone, but I hope so.

    As said, I would be very happy to receive some kind of feedback on this problem.
    Last edited by VBA Noob; 02-04-2009 at 03:38 AM.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Finding a serial number in a list of serial numbers

    Something like this looks at a number in cell A7, and compares it to range of cells on another sheet, in this case a sheet called SpecialIDs:

    =IF(ISNUMBER(MATCH(A7,SpecialIDs!$A$2:$A$100)),"Special","")
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,481

    Re: Finding a serial number in a list of serial numbers

    Check Out this Vlookup example
    Change the number In Sheet1 A1 and the other Cells will change accordingly.
    The table is on sheet 2
    http://www.excelforum.com/attachment...her-sheets.zip

    Also
    http://www.excelforum.com/attachment...6-14-26-22.zip
    http://www.excelforum.com/attachment...e-vlookup3.zip

    http://www.freewebs.com/davesexcel/V...20Example2.xls
    Last edited by davesexcel; 02-04-2009 at 05:29 AM.

+ Reply to 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