Find out the exchange rate for a specific date.

eXtremer

Board Regular
Joined
Oct 20, 2010
Messages
74
Hi guys,

Need some help in excel.

In the first column there are some DATES and I need to find what was the exchange rate for that dates.
In the second and third columns is the DATE and the exchange rate.
So column 1 has to check the date from column 2 in order to know the exchange rate (that's in column 3).

The file is uploaded here and here(mirror). [direct link no filehosting]

I would really appreciate your help,
Thank you in advance.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
= index(c:c,match(a2,b:b,0),1)
 
Last edited:
Upvote 0
By the looks of it you just need a vlookup formula...

in Excel 2007 or newer use this in cell D2 and copy down:

Code:
=IFERROR(VLOOKUP(A2,B2:C945,2,0),"-")

For older versions of Excel:

Code:
=IF(ISERROR(VLOOKUP(A2,B2:C945,2,0)),"-",VLOOKUP(A2,B2:C945,2,0))

For any dates that don't have a match a "-" will be shown...

:)
 
Last edited:
Upvote 0
=index(c:c,match(a2,b:b,0),1)

When I press eneter it says "error formula"....newbie in excel, where should I paste it ? Thanks.



error_excel.jpg


Code:
=IF(ISERROR(VLOOKUP(A2,B2:C945,2,0)),"-",VLOOKUP(A2,B2:C945,2,0))
For any dates that don't have a match a "-" will be shown...

error_excel2.jpg


Same question, how to use it ? Thanks
 
Last edited:
Upvote 0
Both the vlookups and index/match formulas work fine for me when dropping into your sheet... how did you paste them in?

Have just noticed as well that I forgot to include absolute cell references in the formula... use this instead...

=IF(ISERROR(VLOOKUP(A2,$B$2:$C$945,2,0)),"-",VLOOKUP(A2,$B$2:$C$945,2,0))
 
Last edited:
Upvote 0
All is correct. What is your parameters delimiter?
 
Upvote 0
Both the vlookups and index/match formulas work fine for me when dropping into your sheet... how did you paste them in?

Have just noticed as well that I forgot to include absolute cell references in the formula... use this instead...

=IF(ISERROR(VLOOKUP(A2,$B$2:$C$945,2,0)),"-",VLOOKUP(A2,$B$2:$C$945,2,0))

Just copy/paste in the first cell of D columns, then enter...

All is correct. What is your parameters delimiter?

Sorry, don't know what is the "parameter delimiter" :eeek:

Could someone upload the result so I would know how to make it work...
Thanks.

P.S. Office 2003
 
Upvote 0
kidwispa, Sektor - thank you a lot guys
thx.gif


Did the same thing, but it didn't want to work in my case, doesn't matter now, everything good.
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,286
Members
452,902
Latest member
Knuddeluff

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