简体   繁体   中英

Get cell from a dynamic table in google sheets

Google sheet outputs a table when using googlefinance

Let's take an example for that

=GOOGLEFINANCE("NASDAQ:GOOG", "price", date(2020,1,1))

在此处输入图像描述
I want to get just value from this table. I know this forumula can give me multiple rows. But I still just want to get value of just one cell, in this example I want value of second row second column ie 1367.37 only.

use:

=INDEX(GOOGLEFINANCE("NASDAQ:GOOG", "price", DATE(2020, 1, 1)), 2, 2)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM