Results 1 to 12 of 12

Data Scraping from the WebSite

Threaded View

  1. #8
    Registered User
    Join Date
    04-30-2007
    Posts
    26

    Re: Data Scraping from the WebSite

    Hi,

    Thanks all for your posts
    Closing the IE is missing,

    Quiet.IE
    Sub test()
    
        Dim a(1 To 15), b(1 To 15, 1 To 3), e, i As Integer, c As Range
    
        With CreateObject("InternetExplorer.Application")
    
            .Navigate "http://www.religareonline.com/research/research-reports/currency-research-reports/4"
            .Visible = True
    
            While .busy Or .Readystate <> 4: DoEvents: Wend
    
            For Each e In .document.getElementById("divReportListingContent").getElementsByTagName("div")
                If e.classname Like "mT10*" Then
                    i = i + 1
                    a(i) = e.Children(0).Children(0).getElementsByTagName("a")(0)
                    b(i, 1) = e.Children(0).Children(0).innertext
                    b(i, 2) = Trim$(Split(e.Children(0).Children(1).innertext, "|")(1))
                    b(i, 3) = e.Children(0).Children(2).innertext
                End If
            Next
    
            With Sheets.Add.Cells(1).Resize(UBound(b, 1), UBound(b, 2))
                .Value = b
                For i = 1 To UBound(a, 1)
                    .Parent.Hyperlinks.Add .Cells(i, 1), a(i), .Cells(i, 1).Value
                Next
                .EntireColumn.AutoFit
            End With
    
        End With
    
    End Sub

    Sathis
    Last edited by sathis; 07-19-2015 at 10:16 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. problem while scraping data from website
    By dps700 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 12-09-2014, 09:46 AM
  2. Automated data scraping from website into excel
    By kavin in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-10-2014, 01:42 PM
  3. Scraping website into excel
    By eodsolo in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 07-12-2014, 06:25 AM
  4. Replies: 1
    Last Post: 02-17-2014, 11:21 PM
  5. Scraping website data when Get External Data from Web doesnt work
    By Zipping2010 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-01-2013, 12:16 AM
  6. scraping data from a website
    By redpanda in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 07-05-2012, 01:20 PM
  7. Scraping website data into Excel
    By oliver79 in forum Excel General
    Replies: 0
    Last Post: 06-13-2010, 02:15 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