0
votes

I want to get the price of bitcoin on exact date.

The dates are written in Column A and they are updated regularly from a Google form

This is an example of the working formula, but the date in it is written manually (2017-01-31):

=ARRAYFORMULA(IF(ISBLANK($B$2:$B),"",CRYPTOFINANCE("BTC/USD", "price",2017-01-31)))

But when I try to get the dates from Column A, mentioned with $C$2:$C - Google sheets do not understand it

=ARRAYFORMULA(IF(ISBLANK($B$2:$B),"",CRYPTOFINANCE("BTC/USD", "price",$C$2:$C)))

Click here to check The spreadsheet

Thank you in advance!

1
CRYPTOFINANCE isn't a built-in function. Are you using an add-on?Rubén

1 Answers

0
votes

"Doctor, it hurts when I do this."

In the example spreadsheet you are converting the dates into text for the column C, using the explicit TEXT() function. Then you are wondering why they no longer work as dates?

Stop converting to text.