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

Hiding Graphics when Filtering

Excel allows you to set up graphics so that they are associated with cells and even stay with the cells when the cells ...

Discover More

Inserting a Sound File in Your Worksheet

Some worksheets are better understood through the spoken word or with musical accompaniment. Sound files can be easily ...

Discover More

Displaying a Count of Zeros on the Status Bar

Excel allows you to display the results of several common worksheet functions on the status bar. The available functions ...

Discover More

Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!

More ExcelTips (menu)

Adding Ordinal Notation to Dates

Want to add an ordinal suffix to a number, as in 2nd, 3rd, or 4th? Excel doesn't provide a way to do it automatically, ...

Discover More

Counting Odds and Evens

If you have a series of values in a range of cells, you may wonder how many of those values are even and how many are ...

Discover More

Checking for Either of Two Text Values

Using a formula to find information in a text value is easy. Using a formula to find either of two text values within a ...

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 1 + 1?

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.