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

Data Analysis

  • What-If Analysis: Scenarios and Goal Seek in Excel
  • Randomize/ Shuffle List in Excel
  • How to calculate average last N values in a table in Excel
  • How to add Trendline to a chart in Excel
  • How to calculate current stock or inventory in Excel

References

  • Two-way lookup with VLOOKUP in Excel
  • Basic INDEX MATCH approximate in Excel
  • Create hyperlink with VLOOKUP in Excel
  • How to get last row in text data in Excel
  • Count unique text values with criteria

Data Validations

  • Excel Data validation date in specific year
  • Excel Data validation allow weekday only
  • How To Create Drop-down List in Excel
  • Excel Data validation no punctuation
  • Prevent invalid data entering in specific cells

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

  • Nested IF function example in Excel
  • OR function: Description, Usage, Syntax, Examples and Explanation
  • IF, AND, OR and NOT Functions Examples in Excel
  • How to use Excel OR Function
  • How to use Excel XOR Function

Date Time

  • Convert text to date in Excel
  • Get month name from date in Excel
  • SECOND function: Description, Usage, Syntax, Examples and Explanation
  • How to calculate nth day of year in Excel
  • How to calculate months between dates in Excel

Grouping

  • If cell contains one of many things in Excel
  • Map inputs to arbitrary values in Excel
  • How to randomly assign people to groups in Excel
  • Running count group by n size in Excel
  • How to randomly assign data to groups in Excel

General

  • Transpose: Switch ‘Rows to Columns’ or ‘Columns to Rows’ in Excel
  • How to generate random number between two numbers in Excel
  • How to fill cell ranges with random number from fixed set of options in Excel
  • Share Excel data with Word documents
  • How to generate random number weighted probability in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning