+ Reply to Thread
Results 1 to 2 of 2

Is there a Formula to ...

  1. #1
    Registered User
    Join Date
    10-12-2006
    Posts
    1

    Is there a Formula to ...

    I am working on a spreadsheet where i enter a part number in one colum and then a alternate part number in a different colum. Does anyone know of a formula that will automaticly enter in the second part # in the other colum one i put the 1st part number on the work book ??

    Thanks
    SarahB

  2. #2
    Valued Forum Contributor
    Join Date
    03-25-2004
    Location
    Boston, MA US
    Posts
    1,094
    SarahB,

    You could set up a table with the primary part numbers in one column and it's alternate part number in the second somewhere in your sheet say D1:C100. Then you could use a formula like,

    =VLOOKUP(A1,D1:C100,2,FALSE)

    When you enter in the primary part number, this will look it up and retrieve the alternate part number in the table. To avoid getting an N/A error you can modify to:

    =IF(ISNA(VLOOKUP(A1,D1:C100,2,FALSE)),"Part Not Found",VLOOKUP(A1,D1:C100,2,FALSE))

    HTH

    Steve

+ 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