Tentei "burlar" esta dificuldade através de busca de tabelas da página, consegui com a rotina abaixo pegar a tabela da página principal. Agora falta "clicar" no botão e selecionar o 3t12. Alguém sabe como fazer isso?
Macro que encontrei na net:
Sub AcessaPagina2()
Dim ie As InternetExplorer
Set ie = New InternetExplorer
ie.Navigate "http://www.infomoney.com.br/mercados/agendas"
ie.Visible = True
Dim elemCollection As Object
Dim t As Integer
Dim r As Integer, c As Integer
Set elemCollection = ie.Document.getElementsByTagName("TABLE")
For t = 0 To elemCollection.Length - 1
For r = 0 To elemCollection(t).Rows.Length - 1
For c = 0 To elemCollection(t).Rows(r).Cells.Length - 1
ThisWorkbook.Worksheets(1).Cells(r + 1, c + 1) = elemCollection(t).Rows(r).Cells(c).innerText
Next c
Next r
Next t
End Sub
Postado : 16/01/2013 4:41 pm