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

Data Analysis

  • How to Sort by Color in Excel
  • What-If Analysis: Scenarios and Goal Seek in Excel
  • Managing Conditional Formatting Rules in Excel
  • Get column name from index in Excel Table
  • How to count table columns in Excel

References

  • MATCH function: Description, Usage, Syntax, Examples and Explanation
  • Left Lookup in Excel
  • Count unique text values with criteria
  • Last row number in range
  • How to reference named range different sheet in Excel

Data Validations

  • Excel Data validation number multiple 100
  • Excel Data validation specific characters only
  • Excel Data validation with conditional list
  • Excel Data validation exists in list
  • Excel Data validation require unique number

Two-way lookup with INDEX and MATCH in Excel

by

This tutorial shows how to calculate Two-way lookup with INDEX and MATCH in Excel using the example below;

Formula

=INDEX(data,MATCH(val,rows,1),MATCH(val,columns,1))

Explanation

To lookup in value in a table using both rows and columns, you can build a formula that does a two-way lookup with INDEX and MATCH.

In the example shown, the formula in J8 is:

=INDEX(C6:G10,MATCH(J6,B6:B10,1),MATCH(J7,C5:G5,1))

Note that this formula is doing and “approximate match”, so row values and column values must be sorted.

How this formula works

The core of this formula is INDEX, which is simply retrieving a value from C6:G10 (the “data”) based on a row number and a column number.

=INDEX(C6:G10, row, column)

To get the row and column numbers, we use MATCH, configured for approximate match, by setting the 3rd argument to 1 (TRUE):

MATCH(J6,B6:B10,1) // get row number
MATCH(J7,C5:G5,1) // get column number

In the example, MATCH will return 2 when width is 290, and 3 when height is 300.

In the end, the formula reduces to:

=INDEX(C6:G10, 2, 3)
= 1800

Post navigation

Previous Post:

COSH function: Description, Usage, Syntax, Examples and Explanation

Next Post:

Excel Data validation require unique number

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

  • IFERROR function: Description, Usage, Syntax, Examples and Explanation
  • IF with boolean logic in Excel
  • How to return blank in place of #DIV/0! error in Excel
  • Extract multiple matches into separate rows in Excel
  • OR function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • Add workdays no weekends in Excel
  • Extract time from a date and time in Excel
  • YEAR function: Description, Usage, Syntax, Examples and Explanation
  • DATEDIF function: Description, Usage, Syntax, Examples and Explanation
  • How to calculate next day of week in Excel

Grouping

  • Calculate conditional mode with criteria in Excel
  • Group times into unequal buckets in Excel
  • Group times into 3 hour buckets in Excel
  • Running count group by n size in Excel
  • Group numbers with VLOOKUP in Excel

General

  • Select, Insert, Rename, Move, Delete Worksheets in Excel
  • Basic error trapping example in Excel
  • How to calculate profit margin percentage in Excel
  • Excel Autofill Cell Ranges, Copy, Paste
  • Check if range contains a value not in another range in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning