We have a Google Sheet that downloads GoogleFinance data (raw, for every day of the rolling date frame).
=googleFinance("CURRENCY:USDNZD","price", B2,C14,"daily")
However, whenever we try to download the file to CSV, the values from the googleFinance formula disappear and we are left with a "#N/A" value.
**Google Sheet**
Google finance data (raw, for every day of the rolling date frame)
Date Close
10/1/2015 23:58:00 1.56304964
10/2/2015 23:58:00 1.55134983
10/3/2015 23:58:00 1.55134983
10/4/2015 23:58:00 1.55002736
10/5/2015 23:58:00 1.53985973
10/6/2015 23:58:00 1.52854965
10/7/2015 23:58:00 1.51434867
**CSV**
Google finance data (raw, for every day of the rolling date frame)
#N/A
I assume this is because the data does not actually exist within the Google Sheet, and is instead being dynamically loaded per interval.
Is there any way to download the values of the data when saving as a csv?