Results 1 to 7 of 7

Looping help needed.

Threaded View

  1. #1
    Registered User
    Join Date
    12-24-2017
    Location
    Paramus, United States
    MS-Off Ver
    2010
    Posts
    50

    Looping help needed.

    I have a list of 400 stock symbols in cell A1 of an excel spreadsheet. I then go to a macro and load this website:

    https://finviz.com/quote.ashx?t=" & Range("A1").Value

    The macro, parsehtml below pulls data into excel from 400 snapshot stock tables. The results load starting in row 1-400 of the spreadsheet.

    The problem is that 400 is the limit of snapshot stock tables you can bring in on 1 page and I have many more.

    Therefore, I have to have a second page

    https://finviz.com/quote.ashx?t=" & Range("A2").Value

    I want the results from page 2 to load in row 401 to 800, however they are overwriting the data in row 1-400.

    Does anyone know how make the results from page 2 continue starting in row 401?

    For testing purposes, I've attached a file with only 7 items in Cell A1 and 7 items in Cell A2. Thanks for the help.


    Public Sub parsehtml(page As String)
        Dim http As Object**, html As New HTMLDocument**, topics As Object, titleElem As Object, titleElem2 As Object, detailsElem As Object, topic As HTMLHtmlElement
        Dim i As Integer
        URL = "https://finviz.com/quote.ashx?t=" & page
        Set http = CreateObject("MSXML2.XMLHTTP")
        http.Open "GET", URL, False
        http.send
        html.body.innerHTML = http.responseText
        Set topics = html.getElementsByClassName("snapshot-table2")
        i = 1
        For Each topic In topics
        Set titleElem = topic.getElementsByTagName("tr")(2)
        Set titleElem2 = topic.getElementsByTagName("td")(1)
        Sheets(1).Cells(i, 3).Value = titleElem.getElementsByTagName("b")(0).innerText
        Set titleElem = topic.getElementsByTagName("tr")(3)
        Set titleElem2 = topic.getElementsByTagName("td")(2)
        Sheets(1).Cells(i, 4).Value = titleElem.getElementsByTagName("b")(0).innerText
        i = i + 1
        Next
        Set topics = html.getElementsByClassName("fullview-title")
        i = 1
        For Each topic In topics
        Set titleElem = topic.getElementsByTagName("tr")(0)
        Set titleElem2 = topic.getElementsByTagName("td")(0)
        Sheets(1).Cells(i, 2).Value = titleElem.getElementsByTagName("a")(0).innerText
        i = i + 1
        Next
        
    
        End Sub
    
        Sub Loader()
        parsehtml Range("A1").Value
        parsehtml Range("A2").Value
      
        End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Help needed with looping through multiple folders and calling macros
    By maym in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 07-18-2017, 09:22 PM
  2. [SOLVED] NON-VBA: FORMULA NEEDED - Looping through string and stop on non-numeric
    By dluhut in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 05-09-2014, 12:37 PM
  3. [SOLVED] Looping Help needed in Recorded Macro
    By zaska in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 08-03-2012, 11:03 PM
  4. Simple Looping Example needed
    By msmithdynamicsgp in forum Word Programming / VBA / Macros
    Replies: 3
    Last Post: 06-12-2011, 09:45 PM
  5. A spreadsheet for a coil winder - looping help needed!
    By HankMcSpank in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 10-09-2009, 09:46 AM
  6. Looping macro needed to find intersections of rows and columns
    By Clifford Middleton in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-05-2006, 09:10 AM
  7. [SOLVED] Help needed - seriously (looping? macros? formulas?)
    By jarski in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-29-2005, 01:05 PM

Tags for this Thread

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