2016-10-27 107 views

回答

3

這取決於你想要什麼。這些得到所有可用的表:

損益表季度數據

=importhtml(
"https://www.google.com/finance? q=NYSE%3AF&fstype=ii&ei=viASWOnfNsfEeqqUnMgG","table",2) 

利潤表年度數據

=importhtml(
"https://www.google.com/finance?q=NYSE%3AF&fstype=ii&ei=viASWOnfNsfEeqqUnMgG","table",3) 

資產負債表季度數據

=importhtml(
"https://www.google.com/finance?q=NYSE%3AF&fstype=ii&ei=viASWOnfNsfEeqqUnMgG","table",4) 

資產負債表年度數據

=importhtml(
"https://www.google.com/finance?q=NYSE%3AF&fstype=ii&ei=viASWOnfNsfEeqqUnMgG","table",5) 

現金流季度數據

=importhtml(
"https://www.google.com/finance?q=NYSE%3AF&fstype=ii&ei=viASWOnfNsfEeqqUnMgG","table",6) 

現金流年度數據

=importhtml(
"https://www.google.com/finance?q=NYSE%3AF&fstype=ii&ei=viASWOnfNsfEeqqUnMgG","table",7) 

要獲得其他公司,進入股市symvol(即; F,GOOG,IBM),並引用URL中的單元格。就像這樣:

=importhtml(
"https://www.google.com/finance?q="&A2&"&fstype=ii&ei=viASWOnfNsfEeqqUnMgG","table",2) 

的 「& A2 &」 引用單元格A2。該公式將獲取單元格A2中公司的數據。

+0

任何想法如何更改其他公司的鏈接?我不理解如何在符號後面生成看似隨機的字符串,而無需先手動訪問網站並獲取每個公司的鏈接。 – CodeCamper

+0

@CodeCamper請參閱我的答案的補充。 –