b.hill2387
New Member
- Joined
- Mar 28, 2012
- Messages
- 38
I would like to be able to put the 4th "td" tag within the class name "togo" into cell values each time the class name "togo" occurs. I think the logic would go something like this:
I would greatly appreciate any help in translating the above to actual code or suggestions for better or faster approaches.
Code:
Sub classtag()
i = 1
For each class name "togo" in HTMLDoc
Cells(i,1).Value = 4th "td" tag innertext
i = i + 1
Next
End Sub
I would greatly appreciate any help in translating the above to actual code or suggestions for better or faster approaches.