REAL-TIME

VBA Projects

Full Access with Source Code
  • Designed and Developed by PNRao

  • Full Access with VBA Source Code

  • Well Commented Codes Lines

  • Creative and Professional Design

Effortlessly
Manage Your Projects

120+ Project Management Templates

Seamlessly manage your projects with our powerful & multi-purpose templates for project management.

120+ PM Templates Includes:
  • 50+ Excel Templates

  • 50+ PowerPoint Templates

  • 25+ Word Templates

Share Post

What is the use of HLOOKUP function?

HLOOKUP is helpful to get the values from the lookup range, it search from top to bottom in Horizontal approach. VLOOKUP is useful for getting the data for lookup values by searching vertically. whare as HLOOKUP searches in Horizontally.

HLookUp Function in Excel - real time example

H in HLOOKUP stands for Horizoantal and HLOOKUP Function in Excel searches horizontally for lookup value and returns the value in a given row ( as per row index mentioned in the formula) that matches a value in the top most row of a table.

What is the syntax of HLOOKUP function?

HLOOKUP Function in Excel syntax

=HLOOKUP(lookup_value, table_array, row_index_num

[,range_lookup])

  • lookup_value: The value to be searched in the top most row of the array.
  • table_array: The range or a range name containing the table of data.
  • row_index_num: The row number in table_array from which you return corresponding matching value
    [range_lookup]: Whether to find an exact match.
    True or 1 = Closest match is returned
    False or 0 = Exact matches are returned

Examples on HLOOKUP Function in Excel

Let us see some examples to understand HLOOKUP formula.

hLookup Examples

The data shows Square and Cube values in the rows for the columns 1 to 5.

Example 1:

=HLOOKUP(4,B4:F6,2,FALSE)

HLOOKUP Looks for the lookup value (4) in the top most row of the lookup range (first row, ie; B4:F4) and returns its corresponding value in the second row (as we mentioned row index as 2 in the HLOOKUP formula). So the result will be 16 (value found at 4th column, 2nd row)

Example 2:

=HLOOKUP(4,B4:F6,3,FALSE)

HLOOKUP Looks for the lookup value (4) in the top most row of the lookup range (first row, ie; B4:F4) and returns its corresponding value in the third row (as we mentioned row index as 3 in the HLOOKUP formula). So the result will be 64 (value found at 4th column, 3rd row)

Example 3:

=HLOOKUP(6,B4:F6,3,FALSE)

HLOOKUP Looks for the lookup value (6) in the top most row of the lookup range (first row, ie; B4:F4) and it should return its corresponding value in the third row (as we mentioned row index as 3 in the HLOOKUP formula).

This formula returns #NA as it does not found any match for lookup value in the lookup range (6 not found in in the table array or range B4:F4 ).

Example 4:

=HLOOKUP(6,B4:F6,3,TRUE)

HLOOKUP Looks for the lookup value (6) in the top most row of the lookup range (first row, ie; B4:F4) and it should return its corresponding value in the third row (as we mentioned row index as 3 in the HLOOKUP formula).

HLOOKUP returns 125 as 6 is not found in the lookup array (first row, ie; B4:F4) and we mentioned TRUE as match range type in the formula, So HLOOKUP wil search for nearest lookup value. 5 is closer to 6 and it returns its corresponding value in the third row i.e; 125.

Reference:

Please refer the below article for more Lookup & Reference Excel functions.
Lookup & Reference Excel Formulas

Please refer the below article for more Excel Functions.
Excel Formulas | Home

Effortlessly Manage Your Projects and Resources
120+ Professional Project Management Templates!

A Powerful & Multi-purpose Templates for project management. Now seamlessly manage your projects, tasks, meetings, presentations, teams, customers, stakeholders and time. This page describes all the amazing new features and options that come with our premium templates.

Save Up to 85% LIMITED TIME OFFER
Project Management Templates

All-in-One Pack
120+ Project Management Templates

Essential Pack
50+ PM Templates

Excel Pack
50+ Excel PM Templates

PowerPoint Pack
50+ Excel PM Templates

MS Word Pack
25+ Word PM Templates

Ultimate Project
Management Template
Ultimate Resource
Management Template
Project Portfolio
Management Templates
Categories: Excel FormulasTags: , Last Updated: June 17, 2022

2 Comments

  1. stella November 15, 2013 at 9:59 PM

    sorry, i thought the table array is B4:F6 not B5:F7? I tried with table array B5:F7, the results are different.

  2. PNRao November 16, 2013 at 12:22 AM

    Yes – you are correct, I corrected it.

    Thank you very much -PNRao!

Leave A Comment