I am trying to run a GoogleFinance
query in GOOGLE Sheets to get the stock price for the same stock. I wish to display the stock price in different rows of column A:
- On day 1 I will enter the formula in cell A1
- On day 2 I will enter the formula in cell A2
Here is the basic formula I need to use in A1 and A2:
=GOOGLEFINANCE("F", "price")
On Monday Dec 11, 2017, I entered this formula in cell A1
and it gave 12.54 in cell A1.
On Wedns. Dec 13, 2017, I entered this formula in cell A2
and it gave 12.68 in cell A2 BUT it also changed cell A1 from 12.54 to 12.68. So, now both A1
and A2
shows the same number - 12.68.
I want:
A1 = 12.54 // enter formula into this cell on Monday
A2 = 12.68 // enter formula into this cell on Wednesday
Is this possible with GOOGLEFINANCE()
?