Forum Discussion
WOODBR_1
Apr 23, 2021Copper Contributor
Pulling Historical Exchange Rates
Hi, Excel has the function to bring in Exchange Rates "live" with a circa 15 minutes delay, which works fine; however, does anybody know how to cause Excel to being in exchange rates by dates, so th...
OmerAyan
Jan 08, 2024Copper Contributor
WOODBR_1 Excellent knowledge, thank you Sergei, you have saved lots of time
ingstephenmallia
Mar 20, 2024Copper Contributor
I am trying to get USD to EURO for a particular date.
The date is in 'date' format. Can you help me out, please?
Thanks in advance.
- MarekBernolakMar 20, 2024Copper Contributor
Hi ingstephenmallia,
I guess, what you need is to type a date between double quotes, i.e. "19/03/2024" or to reference to a date in another cell.Best Regards 🙂
- Pamm1708Jun 21, 2024Copper Contributor
MarekBernolak is it possible to use the same format and ask it to link to a date in another cell ? I have a download from a credit card account in USD and I need to convert the transactions into GBP
- SergeiBaklanJun 25, 2024Diamond Contributor
That could be like
=TAKE( STOCKHISTORY( "USD/GBP", [@Date] - 10, [@Date], 0,0,1), -1 )*[@Amount]
Since STOCKHISTORY skips weekends and public holidays and transactions could be at any day, we need to get data for some range and take the latest available.