Returning a single cell from an array formula

后端 未结 1 492
予麋鹿
予麋鹿 2021-02-18 18:22

I would like to get a single value, the closing price, from this formula:

=GoogleFinance(\"NASDAQ:AAPL\", \"close\", \"12/13/2012\",  1, 1)

Ins

相关标签:
1条回答
  • 2021-02-18 19:12

    You can use the INDEX function:

    =INDEX(GoogleFinance("NASDAQ:AAPL";"close";"12/13/2012";1;1);2;2)

    0 讨论(0)
提交回复
热议问题