Results 1 to 5 of 5

Fetch data on multiple page web

Threaded View

  1. #1
    Forum Contributor
    Join Date
    08-07-2008
    Location
    United States
    MS-Off Ver
    Microsoft Office 2003
    Posts
    362

    Fetch data on multiple page web

    hi guys,

    i am trying to fetch data from a webpage which has multiple pages like 2000 pages which contains 25 rows and 16 columns in a table...can this be extracted in one sheet? I am using the code below but what I do is just simply duplicate the code and change the page range and sheet to where the data will be placed. like

    Sub fetchmultiplepages()
       
       With ActiveSheet.QueryTables.Add(Connection:= _
          "URL;https://myurl.com/test/url.jsp?action=find&sdate=2013-11-10&edate=2013-11-16&start=0&customer=johndoe", _
             Destination:=Range("a1"))
       
          .BackgroundQuery = True
          .TablesOnlyFromHTML = True
          .Refresh BackgroundQuery:=False
          .SaveData = True
       End With
    End Sub
    Sub fetchmultiplepages()
       
       With ActiveSheet.QueryTables.Add(Connection:= _
          "URL;https://myurl.com/test/url.jsp?action=find&sdate=2013-11-10&edate=2013-11-16&start=25&customer=johndoe", _
             Destination:=Range("a26"))
       
          .BackgroundQuery = True
          .TablesOnlyFromHTML = True
          .Refresh BackgroundQuery:=False
          .SaveData = True
       End With
    End Sub
    Sub fetchmultiplepages()
       
       With ActiveSheet.QueryTables.Add(Connection:= _
          "URL;https://myurl.com/test/url.jsp?action=find&sdate=2013-11-10&edate=2013-11-16&start=50&customer=johndoe", _
             Destination:=Range("a51"))
       
          .BackgroundQuery = True
          .TablesOnlyFromHTML = True
          .Refresh BackgroundQuery:=False
          .SaveData = True
       End With
    End Sub
    Sub fetchmultiplepages()
       
       With ActiveSheet.QueryTables.Add(Connection:= _
          "URL;https://myurl.com/test/url.jsp?action=find&sdate=2013-11-10&edate=2013-11-16&start=75&customer=johndoe", _
             Destination:=Range("a76"))
       
          .BackgroundQuery = True
          .TablesOnlyFromHTML = True
          .Refresh BackgroundQuery:=False
          .SaveData = True
       End With
    End Sub
    Notice that &start and Destination:=Range("a**")) changes...
    https://myurl.com/test/url.jsp?action=find&sdate=2013-11-10&edate=2013-11-16&start=75&customer=johndoe", _
             Destination:=Range("a**"))
    I have like 200 of this repeated declarations except that the start and the range changes...can somebody help me simplify this procedures?

    Thanks in advance...
    Attached Files Attached Files
    Last edited by stoey; 11-23-2013 at 04:20 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Macro to loop through and fetch data from multiple websites
    By wishkey in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-20-2013, 05:37 AM
  2. Need to fetch a value based on multiple columns
    By kushmakarsharma in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 10-25-2012, 05:37 AM
  3. [SOLVED] Fetch Data: Return Multiple Rows based on Cell Content
    By pdreyest in forum Excel General
    Replies: 8
    Last Post: 09-24-2012, 12:43 AM
  4. Replies: 0
    Last Post: 03-29-2012, 08:06 AM
  5. [SOLVED] fetch data from excel page
    By Mark in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-21-2006, 11:15 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1