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
Bookmarks