標題:
[發問]
QueryTables
[打印本頁]
作者:
DanielWONG
時間:
2017-8-12 20:29
標題:
QueryTables
小弟試圖借助VBA在EXCEL內抓取網頁 , 网址请参考附件。
裡面的技術分析那個部分的資料。[attach]27616[/attach]代碼如下
Private Sub CommandButton1_Click()
With ActiveSheet.Add(Connection:= _
"URL; website pls refer to attachment", _
Destination:=Range("$A$1"))
.Name = "detail-quote.aspx?symbol=00388_1"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlSpecifiedTables
.WebFormatting = xlWebFormattingNone
.WebTables = """tbTI"""
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub
複製代碼
同普通的QUERYTABLE差不多, 可是拿不到任何資料。個人覺得是否因為這個網頁不能直接打一個網址就可以直接進去,還需要點擊多一次股票代號位置的進入按鈕才能進入, 不過不知如何解決這個問題。[attach]27617[/attach]請教師兄提供意見,多謝!
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)