Looking up data - Match / Index / Other ????

601488

New Member
Joined
Jan 12, 2007
Messages
20
Help!

I have a table of data (table 1) in a spreadsheet looking something like this:

Month EUR AUD USD CAD
Apr-11 1.1322 1.5465 1.6347 1.5662
Mar-11 1.1542 1.5992 1.6162 1.5787
Feb-11 1.1808 1.5979 1.6116 1.5919
Jan-11 1.1797 1.5793 1.5755 1.5659
Dec-10 1.1809 1.5743 1.5606 1.5746
Nov-10 1.167 1.6145 1.5984 1.6175
Oct-10 1.1412 1.6157 1.5858 1.6144

In another table (table 2) of the spreadsheet I have a 10,000 row spreadsheet containing several columns of data for each row. Two of the pieces of data are the Month and Currency.

If, for example, in table 2 on one of the rows of data I have Feb-11 and the AUD how can I get excel to lookup 1.5979 (the rate for the month in table 1) and return this in a cell in table 2?

Thanks in advance for any help!
Jon
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Try like this

Excel Workbook
ABCDEFG
1MonthEURAUDUSDCADFeb-11
2Apr-111.13221.54651.63471.5662AUD
3Mar-111.15421.59921.61621.57871.5979
4Feb-111.18081.59791.61161.5919
5Jan-111.17971.57931.57551.5659
6Dec-101.18091.57431.56061.5746
7Nov-101.1671.61451.59841.6175
8Oct-101.14121.61571.58581.6144
Sheet1
 
Upvote 0
Help!

I have a table of data (table 1) in a spreadsheet looking something like this:

Month EUR AUD USD CAD
Apr-11 1.1322 1.5465 1.6347 1.5662
Mar-11 1.1542 1.5992 1.6162 1.5787
Feb-11 1.1808 1.5979 1.6116 1.5919
Jan-11 1.1797 1.5793 1.5755 1.5659
Dec-10 1.1809 1.5743 1.5606 1.5746
Nov-10 1.167 1.6145 1.5984 1.6175
Oct-10 1.1412 1.6157 1.5858 1.6144

In another table (table 2) of the spreadsheet I have a 10,000 row spreadsheet containing several columns of data for each row. Two of the pieces of data are the Month and Currency.

If, for example, in table 2 on one of the rows of data I have Feb-11 and the AUD how can I get excel to lookup 1.5979 (the rate for the month in table 1) and return this in a cell in table 2?

Thanks in advance for any help!
Jon
Let Sheet1, A1:E8, house the table you posted, the headers included.

Sheet2

Let A2 house a month/year of interest, B2 a currency of interest.

In C2 enter:

=INDEX(Sheet1!$B$2:$E$8,MATCH(A2,Sheet1!$A$2:$A$8,0),MATCH(B2,Sheet1!$B$1:$E$1,0))
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,551
Members
452,927
Latest member
rows and columns

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