簡體   English   中英

Excel VBA獲取Xero報告

[英]Excel VBA to fetch Xero report

該代碼有效,但不一致。 通常它在此行失敗:

For Each objElement In htmlDoc.GetElementsByTagName("td")

這是代碼:

    Dim AppIE
Dim htmlDoc
Dim nRow As Integer
Dim nColNum As Integer
Dim objElement
Dim nColCount As Integer
Set AppIE = CreateObject("InternetExplorer.Application")
AppIE.Visible = True 'login may be required
AppIE.Navigate myString 'from clipboard
While AppIE.Busy 'wait for IE to open
    DoEvents
Wend
While AppIE.ReadyState <> 4 'wait for login
    DoEvents
Wend
While AppIE.Busy 'pause put in by Donald
    DoEvents
Wend
Set htmlDoc = AppIE.Document
nRow = 0
nColCount = 0
nColNum = 0
For Each objElement In htmlDoc.GetElementsByTagName("td")
    'If IsNull(objElement.classname) And IsNull(objElement.innertext) Then
    'Else
        If objElement.classname = "RowHeader2 MenuLeft" Then
            nColCount = nColCount + 1
            Cells(nRow, nColCount).Value = objElement.innertext
        Else
            If nColCount >= 1 Then
                nColNum = nColNum + 1
                Cells(nRow, nColNum).Value = objElement.innertext
                If nColNum = nColCount Then
                    nColNum = 0
                    nRow = nRow + 1
                End If
                If Len(objElement.classname) = 0 Then
                    nColNum = 0
                    nRow = nRow + 1
                End If
            Else
                nRow = nRow + 1
                Cells(nRow, 1).Value = objElement.innertext
            End If
        End If
    'End If
Next
AppIE.Visible = False
MsgBox "Done"
AppIE.Quit
Set AppIE = Nothing

此代碼似乎允許IE完成到Xero報告的導航...?

    'wait for IE to complete the navigaiton to the Xero report ----------------------------------------------------------------------------------------------------------------------------
n = 0
While n = 0
    For Each objElement In htmlDoc.GetElementsByTagName("td")
        n = n + 1
    Next
    DoEvents
Wend

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM