Not really that I know of - this one's pretty straightforward though. Set a break point in the function and step through with the locals window open and you should be able to follow it.
Function GetWellData(url As String) As Variant
Dim arr(1 To 3)
Dim Doc As Object
Dim oTable As Object
Dim PageSource As String
Dim baseDate As Date
Dim x As Long
'List all the
Const sForms As String = "|1000|1001A|1002A|"
'Get the web page
With CreateObject("msxml2.xmlhttp")
.Open "GET", url, False
.send
PageSource = .responseText
End With
' Create the HTML Document object.
Set Doc = CreateObject("htmlfile")
Doc.body.innerhtml = PageSource
'Get the table from the page
Set oTable = Doc.getElementById("DataGrid")
'Set the base date, a date first occurs on thirs row and 7th column
baseDate = CDate(oTable.Rows(2).Cells(6).innerText)
'Check if the text from the first row contains any of the terms we are looking for
If InStr(1, sForms, "|" & oTable.Rows(2).Cells(1).innerText & "|") Then
'If so populate the array with the data from the relevant cells
With oTable.Rows(2)
arr(1) = .Cells(1).innerText
arr(2) = .Cells(6).innerText
arr(3) = .Cells(0).ChildNodes(0).href
End With
End If
'Loop through the other rows in the table
For x = 2 To oTable.Rows.Length - 1
'Check the 2nd column of the row contains one of the terms
If InStr(1, sForms, "|" & oTable.Rows(x).Cells(1).innerText & "|") Then
'Make sure that the first column contains a hyperlink
If oTable.Rows(x).Cells(0).ChildNodes(0).nodeName = "A" Then
'Check that the date in the row is later than the one we have stored
'if so overwrite the values in the array with the values in the row
If CDate(oTable.Rows(x).Cells(6).innerText) > baseDate Then
arr(1) = oTable.Rows(x).Cells(1).innerText
arr(2) = oTable.Rows(x).Cells(6).innerText
arr(3) = oTable.Rows(x).Cells(0).ChildNodes(0).href
baseDate = CDate(oTable.Rows(x).Cells(6).innerText)
End If
End If
End If
Next x
GetWellData = arr
End Function
Bookmarks