Searching a table

gentleman9

New Member
Joined
Sep 21, 2006
Messages
5
Ok I need some help, I've looked at Microsoft's website and because I really don't know how to describe what I want Excel to do its hard to look up HOW to do it. This is how I want it to look up my data....
table.JPG

I have a reference row of numbers across the top and a reference column of numbers along the left side and I want to be able to search the corresponding number that intersects the two on the table of numbers. Example: The reference number on the left side column would be 15.5 and the reference number in the row across the top would be 60.5 with the number that the equation gives me would be 14. How do I go about getting Excel to spit out my desired result (14) on another sheet in a specific cell?
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
E2:F2 houses the lookup values of interest like 15.5 and 60.5.

In G2 invoke:

=INDEX($B$2:$D$10,MATCH(E2,$A$2:$A$10,1),MATCH(F2,$B$1:$D$1,1))
 
Upvote 0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
E2:F2 houses the lookup values of interest like 15.5 and 60.5.

In G2 invoke:

=INDEX($B$2:$D$10,MATCH(E2,$A$2:$A$10,1),MATCH(F2,$B$1:$D$1,1))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Ok that seems easy enough, but heres the curveball I'm facing:


E2:F2 and G2 are on a different sheet than the table I am searching, how do I write that formula?
 
Upvote 0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
E2:F2 houses the lookup values of interest like 15.5 and 60.5.

In G2 invoke:

=INDEX($B$2:$D$10,MATCH(E2,$A$2:$A$10,1),MATCH(F2,$B$1:$D$1,1))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Ok that seems easy enough, but heres the curveball I'm facing:


E2:F2 and G2 are on a different sheet than the table I am searching, how do I write that formula?

OK, but why don't you tell which sheets are involved?

=INDEX(DifferenSheet!$B$2:$D$10,MATCH(E2,DifferentSheet!$A$2:$A$10,1),MATCH(F2,DifferentSheet!$B$1:$D$1,1))
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,874
Members
449,056
Latest member
ruhulaminappu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top