+ Reply to Thread
Results 1 to 2 of 2

Data From Web - any way to make it 'smarter'?

Hybrid View

  1. #1
    Registered User
    Join Date
    03-10-2014
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    70

    Data From Web - any way to make it 'smarter'?

    I've made a macro to go to a certain website (http://finance.yahoo.com/q/pm?s=RERFX+Performance) and download the 'Past QUarterly Returns' Table. The problem is, the table I want isn't always .WebTables = "42". Sometimes it's 39, sometimes it's 45, it just depends on how many data periods the fund has.

    Is there any way to make it find "Past Quarterly Returns" and then find the immediate subsequent table? Or something of that nature? I can't imagine how the 'Data From Web' feature is of any use to anyone without it being a little more smart.

    I also think the advertisements on the top of the page are sometimes counted as tables, making it even more variable what .WebTables = "#" it will be.

    This is the current macro:
     With ActiveSheet.QueryTables.Add(Connection:= _
            "URL;http://finance.yahoo.com/q/pm?s=" & Range("Q3").Value & "+Performance", Destination:=Range( _
            "$Q$17"))
            .Name = "pm?s=OARBX+Performance"
            .FieldNames = False
            .RowNumbers = False
            .FillAdjacentFormulas = False
            .PreserveFormatting = True
            .RefreshOnFileOpen = False
            .BackgroundQuery = True
            .RefreshStyle = xlOverwriteCells
            .SavePassword = False
            .SaveData = True
            .AdjustColumnWidth = True
            .RefreshPeriod = 0
            .WebSelectionType = xlSpecifiedTables
            .WebFormatting = xlWebFormattingNone
            .WebTables = "48"
            .WebPreFormattedTextToColumns = True
            .WebConsecutiveDelimitersAsOne = True
            .WebSingleBlockTextImport = False
            .WebDisableDateRecognition = False
            .WebDisableRedirections = False
            .Refresh BackgroundQuery:=False
        End With
    
    End Sub

  2. #2
    Registered User
    Join Date
    03-10-2014
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    70

    Re: Data From Web - any way to make it 'smarter'?

    I briefly looked into using specific queries into the HTML of the page, but it looked a bit more complicated. I ended up just downloading all tables on the page, and then using a vlookup to look up the values I was after. Not pretty, but I think it will get the job done (fingers crossed).

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] how to make MAX formula smarter
    By Jetpilot69 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 07-25-2014, 09:21 PM
  2. Need smarter Excel rather than too many IFs
    By richard.lim85 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 07-25-2014, 01:42 AM
  3. hello my New and smarter then me friends
    By mac7988 in forum Hello..Introduce yourself
    Replies: 1
    Last Post: 12-14-2013, 10:43 AM
  4. [SOLVED] Help needed to make "smarter" graphing macro
    By andrewsca in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 10-31-2012, 11:06 AM
  5. So....Am I Smarter Than You?
    By superwhoever in forum Hello..Introduce yourself
    Replies: 1
    Last Post: 10-28-2012, 10:36 PM
  6. Two questions on how to make my formulae smarter
    By fraserk in forum Excel General
    Replies: 4
    Last Post: 09-07-2009, 04:51 PM
  7. HELP - someone smarter than I please!
    By Atheria in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-10-2006, 03:29 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