Return the contents of a cell at the intersection of row and colum

X

XP

I have a table in a sheet called "Pay_Table" in which there are grades in
column A and steps in row 1.

I need to do a lookup in another sheet that finds and returns the
intersection of a particular grade and step. For example, Lookup Grade 8 and
Step 5 and return the contents of that cell.

What formula can I use to do that?

Thanks much in advance...
 
R

Rick Rothstein \(MVP - VB\)

This seems to work...

=INDEX(A1:I13,1+MATCH("Grade 8",A2:A13,0),1+MATCH("Step 5",B1:I1,0))

Adjust each of the Column I and Row 13 references to match your set up.

Rick
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top