Advertisement

How to not make a mess with VLOOKUP

Turns out that a favourite Excel function is not as simple to use as many accountants believe.

Accountants often need to look up data in a table or list, and two popular functions for doing so are VLOOKUP and HLOOKUP. But do you realise it’s very easy to make a mistake with these functions?

Let’s start with a refresher.

VLOOKUP(lookup_value,table_array,column_index_number,[range_lookup]) has the following syntax:

  • lookup_value: What value do you want to look up?
  • table_array: Where is the lookup table?
  • column_index_number: Which column has the value you want returned?
  • [range_lookup]: Do you want an exact or an approximate match? This is optional, and to begin with, I am going to ignore that this argument exists.

HLOOKUP is similar, but works on a row, rather than a column, basis.

Example

I am going to use VLOOKUP throughout to keep things simple. VLOOKUP always looks for the lookup_value in the first column of a table (the table_array) and then returns a corresponding value so many columns to the right, as determined by the column_index_number.

vlookup-1


In example above, the formula in cell G25 seeks the value 2 in the first column of the table F13:M18 and returns the corresponding value from the eighth column of the table (returning 47). You can follow all of these examples in this Excel file.

Seems pretty easy to understand so far, right? So what goes wrong? Well, what happens if you add or remove a column from the table range?

Adding (inserting) a column gives us the wrong value:

vlookup-2


With a column inserted, the formula contains hard code (8) and therefore, the eighth column (M) is still referenced, giving rise to the wrong value. Deleting a column instead is even worse:

vlookup-3


Now there are only seven columns, so the formula returns #REF! Oops.

Fortunately, it is possible to make the column index number dynamic using the COLUMNS function:

vlookup-4


COLUMNS(reference) counts the number of columns in the reference. Using the range F13:M13, this formula will now keep track of how many columns there are between the lookup column (F) and the result column (M). This will prevent the problems illustrated above.

But there are more issues. Consider duplicate values in the lookup column. With one duplicate, the following happens:

vlookup-5


Here, the second value is returned, which might not be what is wanted. With two duplicates:

vlookup-6


Ah, it looks like it might take the last occurrence. Testing this hypothesis with three duplicates:

vlookup-7


Yes, there seems to be a pattern: VLOOKUP takes the last occurrence. Better make sure:

vlookup-8


Rats. In this example, the value returned is the fourth of five. The problem is there’s no consistent logic and the formula and its result cannot be relied upon. It gets worse if we exclude duplicates but mix up the lookup column a little:

vlookup-9


In this instance, VLOOKUP cannot even find the value 2!

So what’s going on? The problem — and common modelling mistake — is that the fourth argument has been ignored:

VLOOKUP(lookup_Value,table_array,col_index_num,[range_lookup])

[range_lookup] appears in square brackets, which means it is optional. It has two values:

TRUE: This is the default setting if the argument is not specified. Here, VLOOKUP will seek an approximate match, looking for the largest value less than or equal to the value sought. There is a price to be paid, though: The values in the first column (or row for HLOOKUP) must be in strict ascending order — this means that each value must be larger than the value before, so no duplicates.

This is useful when looking up postage rates, for example, where prices are given in categories of pounds and you have, say, 2.7 pounds to post. It’s worth noting, though, that this isn’t the most common lookup when modelling.

FALSE: This must be specified. In this case, data can be any which way — including duplicates — and the result will be based upon the first occurrence of the value sought. If an exact match cannot be found, VLOOKUP will return the value #N/A.

And this is the problem highlighted by the above examples. The final argument was never specified, so the lookup column data must be in strict ascending order — and this premise was continually breached.

The robust formula needs both COLUMNS and a fourth argument of FALSE to work as expected:

vlookup-10


This is a very common mistake in modelling. Using a fourth argument of FALSE, VLOOKUP will return the corresponding result for the first occurrence of the lookup_value, regardless of number of duplicates, errors, or series order. If an approximate match is required, the data must be in strict ascending order.

VLOOKUP (and consequently, HLOOKUP) are not the simple, easy-to-use functions people think they are. In fact, they can never be used to return data for columns to the left (VLOOKUP) or rows above (HLOOKUP). So what should modellers use instead? Tune into next month’s column to find out.

Word to the wise

As stated above, HLOOKUP works like VLOOKUP but hunts out a value in the first row of a table and returns a value so many rows below this reference. However, it has the same limitations and should be used just as carefully.

Liam Bastick, FCMA, CGMA, FCA, is director of SumProduct, a global consultancy specialising in Excel training. Send ideas for future Excel-related articles to him at liam.bastick@sumproduct.com. To comment on this article or to suggest an idea for another article, contact Jeff Drew, an FM magazine senior editor, at Jeff.Drew@aicpa-cima.com.