\'get the table based on the table’s id
Set ieDoc = ieApp.Document
Set ieTable = ieDoc.all.Item(\"contentBody\")
\'copy the tables html to the clipboard and paste t
Basically you can get items by tag name., like described in this link: http://www.vbaexpress.com/forum/showthread.php?t=31831
Dim HTMLdoc As HTMLDocument
Dim TDelements As IHTMLElementCollection
Set HTMLdoc = ieApp.Document
Set TDelements = HTMLdoc.getElementsByTagName("table")
And if you want, you can enumerate through the items:
Dim TDelement As HTMLTableCell
For Each TDelement In TDelements
'code-code-code-code-code
Next