Jump to content
Fórum Script Brasil
  • 0

vba + internet Excel


edsonc

Question

Pessoal,

Bom dia,

Fiz um procedimento onde acesso o site pelo VBA Excel para pegar dados de uma tabela,porém a url tem mais de uma página.Existe alguma propriedade ou método que eu possa identificar as demais páginas, atualmente os dados só vem da primeira página as demais não consigo pegar.

abs,

Segue parte do código,precisaria achar um meio de colocar no for as demais páginas, sendo que essas páginas podem variar de acordo com a informação, em um dia posso ter 10 páginas em outro pode ter 12 ou 13 etc...

Option Explicit

Sub Importar_Excel()

Dim elemCollection As Object

Dim t As Integer

Dim r As Integer, c As Integer

Set wsh = Worksheets("Plan1")

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®.Cells.Length - 1

wsh.Cells(r + 1, c + 1) = elemCollection(t).Rows®.Cells©.innerText

Next c

Next r

Next t

End Sub

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...