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?
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)