+ Reply to Thread
Results 1 to 5 of 5

How do I make a part number formula?

  1. #1
    Registered User
    Join Date
    04-22-2009
    Location
    Alabama, United States
    MS-Off Ver
    Excel 2003
    Posts
    8

    How do I make a part number formula?

    I'll try to keep this brief. Our part #'s look like this. XP014567. Where the first pair of characters stand for a value(say XP=Bolt), the second pair stand for a value(01= Grade 2), and so on. What I would like to be able to do is type in the part numer and have the description automatically populate. Is there an easy way to do this ? I'm running Excel 2003. Thanks!

    Todd
    Last edited by VBA Noob; 04-23-2009 at 03:21 PM.

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: How do I make a part number formula?

    You would have to set up one or more tables that identify what each code and description is.. then use Vlookup() along with Left(),Mid(),Right() functions to extract those descriptions and then concatenate those results together...

    e.g.

    =Vlookup(Left(A2,2),table1,2,0)&" "&Vlookup(Mid(A2,3,2),table2,0)&" "&Vlookup(Right(A2,3),table3,2,0)

    where table1, table2 and table3 are the 3 separate lookup tables..(named ranges or you can replace with specific references such as $X$1:$X$100, etc...)
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    04-22-2009
    Location
    Alabama, United States
    MS-Off Ver
    Excel 2003
    Posts
    8

    Re: How do I make a part number formula?

    Got it! Thanks!

    Todd

  4. #4
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: How do I make a part number formula?

    Please mark your thread as Solved.

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

  5. #5
    Registered User
    Join Date
    04-22-2009
    Location
    Alabama, United States
    MS-Off Ver
    Excel 2003
    Posts
    8

    Re: How do I make a part number formula?

    Ahhh...sorry bout that. Thanks again for the help.

    Todd

+ 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