30 Advanced Excel Tips for 2026

Excel Champs / Excel Formulas List / How to Perform Two Way Lookup in Excel (Formula)
By Puneet Gogia (Microsoft MVP)

How to Perform Two Way Lookup in Excel (Formula)

30+ Advanced Excel Tips for 2026

No spam. Only Excel Stuff. God Promise. 😊

A two-way lookup pulls a value from the intersection of a row and a column — say the sales figure for September in the North zone. The classic method makes VLOOKUP’s column number dynamic with MATCH: =VLOOKUP(G1,A1:E13,MATCH(G2,A1:E1,0),0), where G1 holds the month and G2 the zone.

MATCH finds which column the zone sits in, and VLOOKUP returns the value from that column. INDEX with two MATCH functions is the more flexible version, since it doesn’t care which side the lookup columns sit on: =INDEX(B2:E13,MATCH(G1,A2:A13,0),MATCH(G2,B1:E1,0)) — the first MATCH gives the row, the second the column.

In Excel 365 or 2021, nested XLOOKUP is the cleanest: =XLOOKUP(G1,A2:A13,XLOOKUP(G2,B1:E1,B2:E13)). The inner one picks the column, the outer one picks the row. All three need the 0 for exact match, and all three return #N/A if the row or column label doesn’t match exactly — a trailing space in either heading is the usual cause.

It happens sometimes when we need to lookup up a value from a table according to the row heading and column heading.

how to perform two way lookup in excel two dimension table

Let’s say you need to get the values from the above table for a particular month and zone. Here in this situation, you can use a two-way lookup.

Performing a two-way lookup is all about getting a value from a two-dimensional table. That means you can get a value from any cell of a table.

And for this, you need to combine the match function with VLOOKUP.

As you know, a normal VLOOKUP is only able to return a value by looking into a single column at a time.

The reason is, that the col_index argument of VLOOKUP is a static value. But if you combine the match function with VLOOKUP you can make it dynamic.

How to Use VLOOKUP + MATCH for a Two-Way LOOKUP

Let’s come back to our example. We have a table with monthly sales quantity for four different zones of a company.

how to perform two way lookup in excel two dimension table

Now let’s say, your boss wants to check the quantity for a zone for a particular month (For Ex: the month Sep and zone North). And, he doesn’t like to look out on the table for that, and here is the formula:

=VLOOKUP(month,table,MATCH(zone,heading_row,0),0)
how to perform two way lookup in excel formula in table
[thrive_leads id=’112075′]

How it Works

As I already said, we need a match function to make col_index dynamic. This formula works in two parts. When you select the zone, the match function returns the position of the zone in the heading row.

how to perform two way lookup in excel match function for col index

And, then VLOOKUP uses that position to get value from that column.

how to perform two way lookup in excel how does it work

Every time, when you select month and zone it will return the value which is at the intersection of both row and column. The thing is, you have a dynamic col_index which allows you to get values from different columns with VLOOKUP.

Get the Excel File

Puneet Gogia

Written by

Puneet Gogia

Microsoft MVP — Excel · Founder, Excel Champs

Twelve years of teaching Excel, and a decade before that using it as a data analyst. Every tutorial here is written from a file I actually built.

3M+ readers helped
1,000+ tutorials written
Since 2015 teaching Excel

6 thoughts on “How to Perform Two Way Lookup in Excel (Formula)”

  1. lot of things to learn in excel

    thanks for your sincere efforts

    Reply
  2. I need a solution. Please help.

    I have list of priorities. P1 P2 P3 P4.
    Resolution time is
    P1 – 2 hours
    P2 – 4 hours
    P3 – 1 Business day
    P4 – 5 Business day

    P4 Priority
    Start time is
    22-03-2022 10:50:00
    Resolved time is
    24-03-2022 11:30:00

    Help me calculate SLA met or not met.

    Reply
    • I got your point.
      But I found this method simple.
      I agree that INDEX-MATCH has multi use.

      Reply
    • This combination is great and will be extremely useful. Thank you for explaining and sharing all your guides.

      Reply

Leave a Comment