See my posting
http://www.microsoft.com/office/comm...e-ea1664ee9d7d
I wouldn't use class, instead use ID in your HTML. With ID is easy find
find the items using the internet browser
Set SearchResults = IE.document.getElementById("bl gb")
Range("A1") = SearchResults.innertext
"Jason" wrote:
I'm a newbie with VBA, but want to automate a procedure we are doing.
How would I write a function to look at the following HTML source:
'<td<a href="/history/airport/KNYC/2008/7/2/DailyHistory.html"2</a</td
' <td class="bl gb"
' 85
'</td
' <td class="gb"
' 76
'</td
' <td class="br gb"
' 67
'</td
And put the 85 into cell B1, 76 into B2, 67 into B3?
Thanks!