Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Move chart to a separate worksheet in Excel
  • Filter Data Based on Date in Excel
  • Data Series in Excel
  • Example of COUNTIFS with variable table column in Excel
  • Calculate Conditional Percentile ‘IF’ in table in Excel

References

  • How to create dynamic named range with OFFSET in Excel
  • Merge tables with VLOOKUP in Excel
  • Convert text string to valid reference in Excel using Indirect function
  • Two-column Lookup in Excel
  • Last row number in range

Data Validations

  • Data validation must not exist in list
  • Excel Data validation only dates between
  • How To Create Drop-down List in Excel
  • Excel Data validation exists in list
  • Excel Data validation with conditional list

Basic INDEX MATCH exact in Excel

by

This tutorial shows how to calculate Basic INDEX MATCH exact in Excel using the example below;

Formula

=INDEX(data,MATCH(value,lookup_column,FALSE),column)

Explanation

This example shows how to use INDEX and MATCH to get information from a table based on an exact match. In the example shown, the formula in cell H6 is:

=INDEX(B5:E9,MATCH(H4,B5:B9,FALSE),2)

which returns 1995, the year the movie Toy Story was released.

How this formula works

This formula uses MATCH to get the row position of Toy Story in the table, and INDEX to retrieve the value at that row in column 2.

MATCH is configured to look for the value in H4 in column B:

MATCH(H4,B5:B9,FALSE)

Note that the last argument is FALSE, which forces MATCH to perform an exact match.

MATCH finds “Toy Story” on row 4 and returns this number to INDEX as the row number. INDEX is configured with an array that includes all the data in the table, and the column number is hard-coded as 2. Once MATCH returns 4 we have:

=INDEX(B5:E9,4,2)

INDEX then retrieves the value at the intersection of the 4th row and 2nd column in the array, which is “1995”.

The other formulas in the example are the same except for the column number:

=INDEX(B5:E9,MATCH(H4,B5:B9,FALSE),2) // year
=INDEX(B5:E9,MATCH(H4,B5:B9,FALSE),3) // rank
=INDEX(B5:E9,MATCH(H4,B5:B9,FALSE),4) // sales

INDEX with a single column

In the example above, INDEX receives an array that contains all data in the table. However, you can easily rewrite the formulas to work with one column only, which eliminates the need to supply a column number:

=INDEX(C5:C9,MATCH(H4,B5:B9,FALSE)) // year
=INDEX(D5:D9,MATCH(H4,B5:B9,FALSE)) // rank
=INDEX(E5:E9,MATCH(H4,B5:B9,FALSE)) // sales

In each case, INDEX receives an single-column array that corresponds to the data being retrieved, and MATCH supplies the row number.

Post navigation

Previous Post:

How to use Excel CHOOSE Function

Next Post:

Customize Ribbon In Excel

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • IF, AND, OR and NOT Functions Examples in Excel
  • Invoice status with nested if in Excel
  • How to use Excel NOT Function
  • NOT function: Description, Usage, Syntax, Examples and Explanation
  • Excel If, Nested If, And/Or Criteria Examples

Date Time

  • Custom weekday abbreviation in Excel
  • Convert text timestamp into time in Excel
  • Add years to date in Excel
  • Roll back weekday to Friday base on a particular date in Excel
  • Display the current date in Excel

Grouping

  • Group numbers at uneven intervals in Excel
  • Map inputs to arbitrary values in Excel
  • Map text to numbers in Excel
  • Categorize text with keywords in Excel
  • Group times into 3 hour buckets in Excel

General

  • How to fill cell ranges with random text values in Excel
  • Find, Select, Replace and Go To Special in Excel
  • How to calculate total from percentage in Excel
  • List worksheet index numbers in Excel
  • How to create dynamic worksheet reference in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning