Complex Lookup Formulas

Written by Allen Wyatt (last updated August 29, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003


Eddie has a series of part numbers in the format 123/45678 or 011/00345. He needs to look up the name of the corresponding part number from a different table. This table consists of three columns. The first column contains the portion of the part number before the slash (such as 123 or 011) and the second column contains the portion after the slash (such as 45678 or 00345). The third column contains the name that Eddie want to look up.

Part of the problem Eddie is having is that in the table, the two columns that each contain a portion of the part number are numeric values. Thus the full part number isn't 011 and 00345, but 11 and 345. Eddie is wondering how to put together a lookup formula for the part numbers (123/45678 or 011/00345) to return the proper part name from the table.

To start with, you need to make some changes to the table that contains the part numbers. The first two columns should be formatted as text, not as numbers. This will treat the values in those columns as text, so that when you enter "011" in the first column, it retains the leading zero. If you have already entered the value as 011 before formatting the column as text, it will still be displayed as 11 (without the leading zero). You will need to not only change the format of the column, but also re-enter any part-number fragments that contain leading zeros.

Next you need to make sure that your part number table includes column headers. For this example, make sure the three column headers are Left, Right, and Name. (You can make these headers bold and underlined, which helps set them off from the values in each column.) Then, create names for the individual columns by following these steps:

  1. Select the cells in the part number table. Make sure you also select the newly created headers for each column of the table.
  2. Click Insert | Name | Define. Excel displays the Create Names dialog box.
  3. Make sure that only the Top Row check box is selected.
  4. Click OK.

With your part-number table prepared, you are now ready to look up part numbers. In the cells just to the right of your lookup values (123/45678 and 011/00345) you are going to enter an array formula. Assuming that the first part number is in cell A1, you would enter the following array formula in cell B1:

=INDEX(Name,MATCH(A1,Left&"/"&Right,0))

Remember that to denote this as an array formula you enter it by pressing Shift+Ctrl+Enter. The formula then appears in the Formula Bar with {braces} around it. You can copy the formula down to the other cells in column B, as necessary.

The formula works by pulling the value from the Name column of the table when the corresponding Left-column value concatenated with a slash and the Right-column value matches whatever is in cell A1. If there is no match, the formula returns a #N/A error value, otherwise it returns the desired part number.

Note that this approach will work only if you format the first two columns of your part-number table as text and make sure that the various cells contain any leading zeros. If, for some reason, you cannot format the first two columns of the table in this way (perhaps there are too many of them), then you need to change the lookup formula you are using:

=INDEX(Name,MATCH(A1,TEXT(Left,"000")&"/"&TEXT(Right,"00000"),0))

Note that this version of the formula (which should still be entered as an array formula) uses the TEXT function in two places, to convert the values from the Left and Right columns so they have leading zeros.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2787) applies to Microsoft Excel 97, 2000, 2002, and 2003.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Opening Multiple Workbooks at Once

Need to open a bunch of workbooks from within Excel? It's easy to do when you construct a selection set in the Open ...

Discover More

Inserting Cells in a Table

You can enlarge a table by adding cells where they are needed. Just pick where you want the cells inserted, then use the ...

Discover More

Converting Text Inside Double Asterisks to Bold

In plain-text documents, it is not uncommon to see asterisks used around text to indicate what should be considered bold ...

Discover More

Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!

More ExcelTips (menu)

Counting Consecutive Negative Numbers

If you have a range of values that can be either positive or negative, you might wonder how to determine the largest ...

Discover More

Finding the Date Associated with a Negative Value

When working with data taken from the real world, you often have to determine which certain conditions were met, such as ...

Discover More

Dealing with Circular References

Circular references occur when a formula includes a reference to the cell in which the formula appears. Here's how you ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 5 - 3?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.