HLOOKUP Function

A guide to using the Hlookup Function in Excel

Christy Grimste

Reviewed by

Christy Grimste

Expertise: Real Estate | Investment Property Sales

Updated:

March 9, 2022

The HLOOKUP function is an acronym for 'Horizontal lookup' which helps to find and return a value from a horizontal table as our source. Similar to the VLOOKUP, it searches for the lookup value in the first row of the table and returns another value based on the match it finds in the adjoining rows.

Desk - Hlookup

It is useful when the lookup value is located at the top of the table and you need to retrieve another value that is located a few rows below. Let's take a closer look at how this function works.

Free Excel Shortcuts Sheet

Looking to be the fastest Excel user? Increase your speed with our free comprehensive Excel shortcut guide to accompany you for the times you wish you had one.

What is HLOOKUP?

The HLOOKUP function will let you retrieve data using the lookup value in a horizontally organized table. For example, assume that we have the prices for the medium-sized Mccafe drinks in a horizontal table as below:

Table

If we intend to find the price for 'Espresso and Chocolate', we can use the HLOOKUP function where our lookup value will be in the cell B7, the range will be the table and the value returned will be $2.89.

Syntax for HLOOKUP

The HLOOKUP function is consists of four different arguments:

=HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])

where,
lookup_value = The value to look for in the beginning of the table, i.e., first-row value 
table_array = the table from which the value is to be retrieved
row_index_num = this parameter intends to retrieve value from our expected row
range_lookup = optional parameter [TRUE] = gives an approximate match if exact match is not found, [FALSE] = gives exact match or will return an error if exact match is not found.

The simpler version of the HLOOKUP can be stated as:

=HLOOKUP(The value that you are looking up, the range where you are looking for the value, the row number for the selected range in which the value exists, Approximate(TRUE) or Exact Match(FALSE))

For example, if we need to find how much Jamie earns every year, we will use the HLOOKUP function which would return the value as $190,000 since our row_index_num is 5. 

Table 1

Steps to use HLOOKUP

Using the horizontal lookup function is not rocket science. 

First, you must set up the dataset on which you intend to perform the horizontal lookup. The HLOOKUP function will then search the top row in the table for a value that matches your search criteria, and return a corresponding value from the same column.

STEP 1: Arrange your data from top to bottom

HLOOKUP can only find values when the lookup_value are located in the first row of the table. It means that if your look_up value is at the end or in between the table, it will fail to retrieve the value and throw out an error. Arrange the data in such a way that the look_up value is in the first row at the top and all the corresponding information that you need to retrieve is below the look_up values to avoid getting the #N/A error.

Example

STEP 2: Identify the look_up value

Lookup_value defines what the user is looking for which could be names, numbers or even dates. For example, in this case, our lookup_values are in row 2 starting from column C represented by the header 'Year'

Example

STEP 3: Define the table_array

HLOOKUP needs to know where to find the lookup_value and, if found, what value to return from the selected range or the table.This condition is fulfilled by defining the table_array in our function. You can select the table_array from the same or two different spreadsheets as well as entirely different workbooks. For example, our table_array in this dataset is range C2:J5

STEP 4: Row_Index_Num 

The third argument in our function is defined by numbers, the row_index_num acts as a constraint and specifies the row from which we want to retrieve the value. Excel is smart but it is not that smart to determine what row to obtain the value from and hence we need to specify the row_index_num in the function. 

Our table_array has four rows and row_index_num can be either 1,2,3,4 (Using the row_index_num as 1 does not make sense and does not provide much value to the users unless it's a reconciliation task).

Note: You will receive a #VALUE! Error if the row_index_num is less than 1.

STEP 5: Choose between Exact and Approximate value

This is an optional yet the most important parameter of the horizontal lookup function. It commands Excel to find either an exact or approximate match for the lookup_value. The default value is always TRUE(1) if you don't mention or skip the argument. However, by using the FALSE(0), you can get an exact match for the data and avoid all the wrong results while looking for data.

For example, let's say we want to find the gross profit for the expected year 2022 from our three statement financial model made from NIke. To do this, type the formula =HLOOKUP(B8,C2:J5,4,0)

We have referenced cell B8 so that we can dynamically change the value to different years and it will automatically display the gross profit for the referenced year.

In this case, the gross profit in the year 2022 is $21,722. Similarly, if we want to find the estimated revenue in the year 2024, we just need to change the row_index_num to the row from which we expect our value. 

Here we change our row_index_num from 4 to 2 by changing our formula to =HLOOKUP(B8, C2:J5, 2, 0) which will give us the estimated revenue in 2024 as $56,158.

Example

Exact Value

Based on the range_lookup argument, HLOOKUP can perform two types of lookup: FALSE for an exact match and TRUE for an approximate match. By default, excel uses the TRUE parameter in the formula. Assume that you need to find exactly what are the total marks scored by 'Teigan Curry' in his examination. The dataset looks as follows:

Hlookup Table

For this you can use the formula =HLOOKUP(B13, C2:L9, 8, FALSE) which uses the range_lookup argument as FALSE to retrieve the exact value. If you had used TRUE as the optional argument, the result would have been 411 which is not even closely related to the total marks scored by Teigan.

Example

Approximate Value

Approximate argument method returns the next largest value which is smaller than our lookup_value. 

For example, let's say you know someone has scored total marks around 340-360 or below. You need to know the name of the student to assign him extra lectures which are scheduled for the end of the month. The dataset looks as below:

Example

Here you can use the formula = =HLOOKUP(C7,C3:L4,2,TRUE) with lookup_range argument as TRUE. Note that our look_up value is 360 (upper limit) and the HLOOKUP will return the student's name that has scored marks nearest but lower than our lookup value.

We get the result as Ella-Rose Parry who has scored a total of 337 marks in the exam.

Example

Note: You must always arrange your look_up values in ascending order otherwise the formula will give you the wrong result.

When and why to use HLOOKUP

HLOOKUP is commonly used in two scenarios:

  1. When you're looking for a value in a horizontal table and you know what row the value exists in. For example, suppose you have a list of employees and need to know the address present in row 5. By specifying the row number, you can retrieve the address for the employees..
  2. To check whether a particular value exists in our horizontal table. For example, assume that Burger King employee checks the order summary based on the order no. for the customers as the lookup_value and if the result gives an #N/A error, it means that the order for the customer does not exist in the database.

In both cases, the "'lookup value' specifically helps to find or return the value we want. 

HLOOKUP in financial modeling and financial analysis

Horizontal lookups work great in retrieving the data in financial models or make sensitivity models since they are oriented in a horizontal perspective.

Suppose you have made assumptions tables about the revenue growth driver in your financial model. So if your current annual revenue is $42,051 million and today's date is December 15th, 2021, Excel pulls up an expected value for December 15th, 2022 of $45,205 million based on the revenue growth driver using HLOOKUP function. You don't have to calculate this yourself!

Example

In the example above we use the formula =M5*(1+HLOOKUP($B$5,$C$8:$E$9,2,FALSE)) to pull in the data from revenue growth driver assumptions in cells C8:E9. Simply by changing the value in cell B5 to either upside case or downside case, our financial model will reflect the revenue based on a 9% rate for upside case or a 6% rate for downside case.

Free Excel Crash Course

Sign Up for our Free Excel Modeling Crash Course

Begin your journey into Excel modeling with our free Excel Modeling Crash Course.

Learn More

Advantages of HLOOKUP

  • Dual matching mode - The two modes of matching helps the user to find either an approximate match or an exact match by specifying the optional parameter either as TRUE or FALSE respectively.
  • Comparatively easier to use - The function consists of four arguments out of which one is optional (yet important). No tricky conditions or nested formulas, just select the lookup value, reference the table and enter the number from the row from which you expect the result. It's that simple!
  • Saves time - Though most of the time, horizontal tables might not consist of a lot of data/rows, you can still save a lot of time that can be spent in searching for the value manually. 

Limitations of HLOOKUP

  • No bottom to top lookup's - It means that your data must be oriented from top to bottom only with your look_up value at the first row or the top row. The function will not work if there are values at the top of your lookup_value and they are referenced as table_array in the function.
  • Matches first value in case of duplicates - Suppose you need to find the salary for 'Jamie', i.e., cell F2 from your employee database who lives in Albany. There is another Jamie who lives in New York City.
    By using the first name as our look_up value, enter the formula   =HLOOKUP(B9,C2:I6,5,0) in C9. This gives us the value of $190,000. 

In case you need to Check out our article on VLOOKUP here that explains how to deal with duplicates.

Example

However, on closer inspection, we check that the results retrieved are actually wrong.

Even after referencing the correct first name, the formula matches the result for the first value, i.e., for cell D2. This makes it quite a hassle in case there are duplicate values in our lookup value row which is usually in the case of date/name or a year.

  • Static references - If you insert or delete rows in your table_array, you might get #REF! error as a result of references becoming invalid. In such cases, you need to edit the formula again to make the valid references again.
  • Slower calculations - Exact match mode iterates through every single cell of our referenced table_array. So if your table consists of hundreds or thousands of rows of data, it can cause Excel to slow down affecting your work efficiency.
  • It is not case sensitive - When you want to retrieve a value, HLOOKUP treats 'abc' and 'ABC' as the same lookup_value meaning it does not distinguish between them. You must use EXACT function in your horizontal lookup to get the desired result (More about this in the next section).

Case sensitive HLOOKUP

Usually Excel cannot recognize the letter case of the lookup value in the HLOOKUP function. 

However it doesn't mean that you cannot return a matching value for case sensitive lookup_value in a horizontal table.

Suppose our dataset of students consists of two 'Adam' - one in upper case in cell H2 and other in normal case in cell C2.

Example

Assume that the teacher wants to know how many marks has 'ADAM' scored in his English paper. For this we will use a combination of MAX, EXACT, COLUMN, CHOOSE and TRANSPOSE functions.

The EXACT function will compare two strings considering the case sensitivity of the strings and return TRUE if they match or FALSE if they don't match.

The TRANSPOSE function will change the orientation of the data, i.e., if it is in horizontal orientation, then it will change it to vertical data and vice versa.

The COLUMN function will return the column number based on the cell reference. In short, the combination of functions basically will change the table into a vertically oriented data (upon which VLOOKUP is usually used) and return our result.

The formula we will be using to find the marks scored by 'ADAM' is =HLOOKUP(MAX(EXACT(B7, C2:L2) * COLUMN(C2:L2)), TRANSPOSE(CHOOSE({1,2}, TRANSPOSE(COLUMN(C2:L2)), TRANSPOSE(C3:L3))), 2, FALSE). Since this is an array formula, you must press Ctrl + Shift + Enter to get the result and avoid the #N/A error.

This will give you the result as follows:

Example

However, as you can see, the formula gets really complicated. The task is to make things easier for us while working so that it saves us time to look into other matters. 

This is why as much as we like going into depth while working on Excel formulas, we suggest that you use the combination of INDEX, MATCH and EXACT function. 

The corresponding formula to achieve the same result is =INDEX(C3:L3, MATCH(TRUE, EXACT(B7, C2:L2), 0)):

Example

We will break down the formula to help you understand what exactly is done here. First the EXACT function looks into the range C2:I2 for the value 'ADAM'. If it finds the value, the result will be TRUE or else FALSE. 

Hence, the result for our EXACT function will be (FALSE, FALSE, FALSE, TRUE, FALSE, FALSE, FALSE) for all the values in range C2:I2. Now the MATCH function will use TRUE as its lookup value, and return the relative position for that value which then will be used by the INDEX function having referenced range C8:I8 to give us the value 53 i.e cell F8.

What formula to use for the case sensitive HLOOKUP is entirely up to you and your tastes. If you go the long way, you might even stumble upon a better and more simpler way than either of those!

Note: Since this is an array formula, you must press Ctrl +Shift +Enter in the cell to display the result or the Excel will give an #N/A error (except in Excel 365).

You can read more about the INDEX MATCH formula here

Partial match using the wildcard characters

Wildcard characters help to return information from the database for text containing unknown characters and are helpful to locate multiple items in our database excluding the duplicates.

Before we go on to explain an example of partial match using wildcard characters, let us looks at the different types of wildcards that you can use in the formula:

CharacterExplanationExample
*It matches the characters before * with text and return all the strings.he* will return hello, hell, hebrew but not chef, chew. It would have returned the latter words for che*
?It will match a single alphabet position of a text string.bee? Will return beer, beep, beet etc
[]It will match characters within the square bracketsbee[rt] will return beer, beet but not been
[ ] + !An exclamation mark followed by characters inside brackets excludes them from the text matchbee[!rt] will not return beer, beet but will return beep, been
[ ] + -A range of alphabets(in ascending order) separated by dash in brackets matches all the similar text in stringa[a-c]c will return aac, abc, acc
#It will match numerical characters.2#2 will return 252, 212, 222

Let's assume that the teacher knows the first three letters of her student's name. She needs to know what are the total marks 'Ari' scored in her examination. The horizontal table for the dataset looks as below:

Example

For this, the teacher can use the formula =HLOOKUP(B13&"*", C2:L9, 8, FALSE) which will match the value in cell F2 and return the value 463 in row 8 of our table_array based on the row_index_number assumption.

Example

Note: Concatenating the wildcard character without the quotation mark will result in an error while using the formula.

Return multiple values from HLOOKUP

We have seen in previous examples how it is possible to pull Exact and approximate values. However, sometimes you might be required to return all the values for a specific lookup_value. Let's say you need to return marks scored by Teigan in different subjects. The table looks as below:

Example

Here you need to modify your row_num_index argument by adding the row numbers in curly brackets i.e { }. The formula which will be used in returning the marks scored in different subjects is =HLOOKUP(B13, C2:L9, {2,3,4,5,6,7}, FALSE). Since this is an array formula, you must press Ctrl + Shift + Enter to return the result as below:

Example

When you check the formula you notice that your formula itself is enclosed in the curly brackets after pressing Ctrl + Shift + Enter for the array formula.

{=HLOOKUP(B13, C2:L9, {2, 3, 4, 5, 6, 7}, FALSE)}

Using this formula can be tricky, as you must first select the cells in which you are expecting the result. 

For example, we had selected the range B14:G14 and then entered/copied the formula in B14 and finally ran the array formula to give the result. You might get an error the first time but you will definitely get a hang of this once you understand how the formula works!

Free Excel Crash Course

Sign Up for our Free Excel Modeling Crash Course

Begin your journey into Excel modeling with our free Excel Modeling Crash Course.

Learn More