Save content
Have you found this content useful? Use the button above to save it to your profile.
looking up

Modelling tips and tricks: Things are LOOKing UP

by
1st Nov 2018
Save content
Have you found this content useful? Use the button above to save it to your profile.

Welcome to our series of applied tips and tricks in Excel for accountants and financial analysts. Professional modeller, FCA and Excel MVP Liam Bastick, having reviewed HLOOKUP, VLOOKUP, INDEX and MATCH recently, turns his attention to a similar function, LOOKUP.

Regular readers will recall I took VLOOKUP and HLOOKUP to task recently, identifying potential pitfalls in these two lookup functions. Conspicuous by its absence, LOOKUP may seem a less versatile function upon first glance, but it is quite useful for modelling. Allow me to explain.

LOOKUP has two forms: an array form and a vector form. Let me explain the jargon:

  • An array is a collection of cells consisting of at least two rows and at least two columns
  • A vector is a collection of cells across just one row (row vector) or down just one column (column vector)

The diagram should be self-explanatory:

1

The array form of LOOKUP looks in the first row or column of an array for the specified value and returns a value from the same position in the last row or column of the same array:

LOOKUP(lookup_value,array)

where

  • lookup_value is the value that LOOKUP searches for in an array. The lookup_value argument can be a number, text, a logical value, or a name or reference that refers to a value
  • array is the range of cells that contains text, numbers, or logical values that you want to compare with lookup_value.

The array form of LOOKUP is very similar to the HLOOKUP and VLOOKUP functions. The difference is that HLOOKUP searches for the value of lookup_value in the first row, VLOOKUP searches in the first column, and LOOKUP searches according to the dimensions of array.

If array covers an area that is wider than it is tall (ie it has more columns than rows), LOOKUP searches for the value of lookup_value in the first row and returns the result from the last row. Otherwise, LOOKUP searches for the value of lookup_value in the first column and returns the result from the last column instead.

The alternative form is the vector form:

LOOKUP(lookup_value,lookup_vector,[result_vector])

The LOOKUP function vector form syntax has the following arguments:

  • lookup_value is the value that LOOKUP searches for in the first vector
  • lookup_vector is the range that contains only one row or one column
  • [result_vector] is optional (if ignored, lookup_vector is used) this is where the result will come from and must contain the same number of cells as the lookup_vector

Like the default versions of HLOOKUP and VLOOKUP, lookup_value must be located in a range of ascending values, ie where each value is greater than or equal to the one before. If this rule is followed, LOOKUP will return the value occurring to the final occurrence of the lookup_value (whereas MATCH would return the first occurrence).

So why do I advocate for LOOKUP when I said don’t use the other functions just recently? Well, it’s because it is simpler to use, doesn’t rely on row or index column numbers and allows modellers to create inputs that do not need to be specified for all periods modelled. Let me demonstrate with the following example (the full set of examples may be found in the attached Excel file):

2

Imagine you have an annual model forecasting for many years into the future. Creating inputs will be time consuming if data has to be entered on a period by period basis. But there is a shortcut.

Do you see the data table in cells F12:K13 above? The value in the final cell of the first row is actually the numerical value “2020” not the text value “2020+”. It appears that way due to custom number formatting (CTRL + 1):

3

The syntax “0+” adds a plus sign to the number although Excel still reads the value as 2020.

The formula uses the array version of LOOKUP, looking up the year in the first row of the data table and returning the corresponding value from the final row. When a year is selected which is greater than 2020, the 2020 value is used as LOOKUP seeks out the largest value less than or equal to the value sought. Therefore, we don’t need to have lengthy data tables – once we assume inputs will be constant thereafter, we can just curtail the input section.

Using the array form of LOOKUP is dangerous though. What if someone accidentally inserts rows? The lookup will “flip” to look the first and last columns instead, which is not what is required. Using the vector form is safer:

4

Whilst the formula contains one more argument, the formula is more stable. Further, the lookup_vector and the result_vector do not need to be in the same worksheet or even the same workbook. In fact, as long as there is the same number of elements in each, one can be a row vector and the other a column vector.

LOOKUP is very useful when the lookup_vector contains data in strict ascending order. Where do we find this? Dates in time series – LOOKUP is very useful for financial modelling / forecasting. Just be careful though; consider the following scenario:

5

Here, the same formula generates an #N/A error. This is because the date is smaller than the smallest value in the data range. LOOKUP is not quite clever enough to use the first value unprompted, but a simple tweak of the formula will suffice:

6

Here, the formula has been modified to:

=IF(G$19<$G$12,$G$13,LOOKUP(G$19,$G$12:$K$12,$G$13:$K$13))

The added IF statement checks to see if the year is smaller than the first year in the data table and if so, returns the first result. Simple!

It is with this final modification (in its vector form) that I usually use LOOKUP to return values for certain time periods where I do not want to have an input for each period modelled. Very useful!

In case you aren’t convinced, let me finish with the following example:

7

Here, I have monthly financial data for Sales (from the Income Statement) and for Net Assets (from the Balance Sheet). To summarise this data quarterly, row 22 uses a SUMIF function to sum the sales data if it is in that particular quarter. Modellers perform similar calculations day in day out.

=SUMIF($H$11:$Y$11,H$20,$H$13:$Y$13)

However, row 24 shows the closing balance for Net Assets in each quarter. Here, I regularly see a vast array (pun intended) of megaformulae that Tolstoy would have been proud of. We don’t wish to sum the Net Assets amounts for all of the months included in the quarter – we just want the final balance. This is something LOOKUP was born to do. The function in cell H24,

=LOOKUP(H$20,$H$11:$Y$11,$H$15:$Y$15)

is a very simple alternative to the nightmare calculations performed regularly elsewhere.

Tags:

Replies (0)

Please login or register to join the discussion.

There are currently no replies, be the first to post a reply.