这是我的第一篇文章。我是VBA的新手,但我对VB6非常熟悉。我写了一些代码,它从nasdaq获取文本并将其粘贴到工作表中。它终于奏效了。年度损益表上方和下方散布着大量无关数据。我想解析并将重要数据放在我可以自动分析的地方。我想我可以搜索单元格,直到找到:年度损益表并提取到另一张表格。任何建议将非常感激。这就是我所拥有的:
Sub TransferWebData()
Dim IE As Object
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = True
.Navigate "http://www.nasdaq.com/symbol/gd/financials"
Do Until .ReadyState = 4: DoEvents: Loop
IE.ExecWB 17, 0 'SelectAll
IE.ExecWB 12, 2 'Copy selection
Sheets("GD").Range("A1").Select
Sheets("GD").PasteSpecial Format:="HTML", Link:=False, DisplayAsIcon:=False, NoHTMLFormatting:=True
IE.Quit
End With
End Sub
答案 0 :(得分:0)
这应该让你忙碌。
设置对 Microsoft HTML对象库和 Microsoft Internet控件的引用。
在谷歌浏览器中,我导航到网页并使用inspect元素打开WebKit并将xpath复制到元素。这给了我并概述了我的功能的草稿。经过一个半小时的繁琐调试,我能够将数据提取到一个数组中。
Sub TransferWebData()
Dim Data
Dim IE As Object
Set IE = CreateObject("InternetExplorer.Application")
With IE
.Visible = True
.Navigate "http://www.nasdaq.com/symbol/gd/financials"
Do Until .ReadyState = 4: DoEvents: Loop
Data = getFinancialsArray(IE.document)
With Worksheets("GD")
.Cells.ClearContents
.Range("A1").Resize(UBound(Data, 1) + 1, UBound(Data, 2)).Value = Data
.Columns.AutoFit
End With
IE.Quit
End With
End Sub
' //*[@id="financials-iframe-wrap"]/div[1]/table/tbody/tr[1]/td[2]
Function getFinancialsArray(doc As HTMLDocument)
Dim Data
Dim x As Long, y As Long, y1 As Long
Dim divfinancials As HTMLDivElement, div1 As HTMLDivElement
Dim tbl As HTMLTable, allRows
Set divfinancials = doc.getElementById("financials-iframe-wrap")
Set div1 = divfinancials.getElementsByTagName("div").Item(0)
Set tbl = div1.getElementsByTagName("table").Item(0)
Set allRows = tbl.getElementsByTagName("tr")
Dim s As String
ReDim Data(allRows.Length, 10)
For y = 0 To allRows.Length - 1
If Len(Trim(allRows.Item(y).innerText)) Then 'If the row has data
For x = 0 To allRows.Item(y).Cells.Length - 1
Data(y1, x) = allRows.Item(y).Cells(x).innerText
Next
y1 = y1 + 1
End If
Next
getFinancialsArray = Data
End Function
答案 1 :(得分:0)
看一下下面的例子,使用XHR和RegEx检索数据,没有IE自动化:
Option Explicit
Sub GetDataFromNasdaq()
Dim sContent As String
Dim l As Long
Dim i As Long
Dim j As Long
Dim cMatches As Object
Dim r() As String
' retrieve html content
With CreateObject("MSXML2.XMLHTTP")
.Open "GET", "http://www.nasdaq.com/symbol/gd/financials", False
.Send
sContent = .ResponseText
End With
' parse with regex
With CreateObject("VBScript.RegExp")
.MultiLine = True
.IgnoreCase = True
' simplification
.Global = True
.Pattern = "<(\w*) .*?>"
sContent = .Replace(sContent, "<$1>")
.Pattern = ">\s*<"
sContent = .Replace(sContent, "><")
.Pattern = "<thead>|<tbody>|</thead>|</tbody>"
sContent = .Replace(sContent, "")
.Pattern = "<(/?)th>"
sContent = .Replace(sContent, "<$1td>")
' remove nested tables from target table
.Global = False
.Pattern = "(Annual Income Statement[\s\S]*?<table.*?>(?:(?!</table)[\s\S])*)<table.*?>(?:(?!<table|</table)[\s\S])*</table>"
Do
l = Len(sContent)
sContent = .Replace(sContent, "$1")
Loop Until l = Len(sContent)
' trim target table
.Pattern = "Annual Income Statement[\s\S]*?(<table.*?>(?:(?!</table)[\s\S])*</table>)"
sContent = .Execute(sContent).Item(0).SubMatches(0)
' match rows
.Global = True
.Pattern = "<tr><td>(.*?)</td>(?:<td>.*?</td><td>(.*?)</td><td>(.*?)</td><td>(.*?)</td><td>(.*?)</td>)?</tr>"
Set cMatches = .Execute(sContent)
' populate resulting array
ReDim r(1 To cMatches.Count, 1 To 5)
For i = 1 To cMatches.Count
For j = 1 To 5
r(i, j) = cMatches(i - 1).SubMatches(j - 1)
Next
Next
End With
' ouput resulting array
With ThisWorkbook.Sheets(1)
Cells.Delete
Output .Cells(1, 1), r
End With
End Sub
Sub Output(oDstRng As Range, aCells As Variant)
With oDstRng
.Parent.Select
With .Resize( _
UBound(aCells, 1) - LBound(aCells, 1) + 1, _
UBound(aCells, 2) - LBound(aCells, 2) + 1 _
)
'.NumberFormat = "@"
.Value = aCells
.Columns.AutoFit
End With
End With
End Sub
完成处理大约需要2秒钟,输出如下:
答案 2 :(得分:0)
您还可以为多个股票代码导入损益表行项目。
Sub ImportYrlyFS()
ThisSheet = ActiveSheet.Name
Range("A2").Select
Do Until ActiveCell.Value = ""
Symbol = ActiveCell.Value
Sheets(ThisSheet).Select
Sheets.Add
Dim QT As QueryTable
Symbol = UCase(Symbol)
myurl = "http://finance.yahoo.com/q/is?s=" & Symbol & "+Income+Statement&annual"
Set QT = ActiveSheet.QueryTables.Add( _
Connection:="URL;" & myurl, _
Destination:=Range("A1"))
With QT
.WebSelectionType = xlSpecifiedTables
.WebTables = "9"
.Refresh BackgroundQuery:=False
End With
QT.Delete
Sheets(ActiveSheet.Name).Name = Symbol
Sheets(ThisSheet).Select
ActiveCell.Offset(1, 0).Select
Loop
End Sub
您的表格应如下所示。