I've built myself a rather fancy finance tracking spreadsheet, but have run into the following problem:
I track my expenses with two values: amount and currency.
Then, in the next column, I use GOOGLEFINANCE()
to convert those values to my native currency (Euro).
My formula looks like this:
IF(B2 = "EUR"; A2; A2*GOOGLEFINANCE("CURRENCY:" & B2 &"EUR"))
If this row's currency (B column) is EUR, don't do any conversion and just use the value from the A column.
If B is not EUR, take the currency in B and convert the monetary value in A from that currency into EUR.
The problem is that this is constantly updating. In the moment this is okay, but if I go back to it in a few years some values might be very different from the original exchange rate.
What I would like to do is to fill out the field with today's exchange rate and leave the value like that (i.e. static, not dynamic).
Does anyone have any experience with this? I guess it'd also be a common problem for building stock-price record sheets.