The 2,2 means: of the table returned by GoogleFinance("CURRENCY:USDEUR", "price",E1), take the second row, second column.
I believe that 0,2 means: of table returned by GoogleFinance("CURRENCY:USDEUR", "price",E1), take every row (0 has special meaning), and the second column. Try playing around with these numbers so see what I mean.
For some reasons it did not take my screenshot :(
so the formula I wanted to show you is
=index(GoogleFinance("CURRENCY:USDEUR", "price",E1),0,2 )
E1 is the where the date is
The result is, after having written the formula in the cell A1
A1 shows Close
A2 shows the exchange rate of USDEUR for the date in A1
What I would like to do is write the formula in A1 and the result is shown in A1
Thanks
Try
instead of
The
2,2means: of the table returned byGoogleFinance("CURRENCY:USDEUR", "price",E1), take the second row, second column.I believe that
0,2means: of table returned byGoogleFinance("CURRENCY:USDEUR", "price",E1), take every row (0has special meaning), and the second column. Try playing around with these numbers so see what I mean.Hope this helps!
Damn, I did play a bit with those index but obviously did not go up to 2,2
It did the trick.
Thank you so much Fons van der Plas!!!