How to get the price of a stock at a particular date from Google Finance?

user781486 picture user781486 · Mar 22, 2014 · Viewed 48.6k times · Source

I want to get the price of a stock at a particular date from Google Spreadsheet using Google Finance forumula. This is the formula I used;

=GOOGLEFINANCE("GOOG","price",12/13/2013)

It does not work. How can this be done?

Answer

makhan picture makhan · Mar 22, 2014

Just surround the date by quotation marks:

=GOOGLEFINANCE("GOOG","price","12/13/2013")

Also, if you want only the number, wrap it in INDEX formula

=INDEX(GOOGLEFINANCE("GOOG","price","12/13/2013"),2,2)