Leith Ross, thanks so much for the response! Here are two things that I think will help. The first is an attached .jpg of the bottom of the webpage. It's just a screen shot and I had to zoom out pretty far, so it doesn't look all that great, but I'm interested in the table at the bottom (which i boxed in red) that has the contact information of the people mentioned in each article.
The second is what I get when I record a macro to pull the information from this table on one of these pages (in this case "0002"). All of the information across the pages is found on web table 15.
Sub Macro1()
'
' Macro1 Macro
'
'
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://www.anglingreport.com/online_extra/article_details.cfm?id=0002", _
Destination:=Range("$A$1"))
.Name = "article_details.cfm?id=0002"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlSpecifiedTables
.WebFormatting = xlWebFormattingNone
.WebTables = "15"
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
ActiveWindow.SmallScroll Down:=-30
Range("A12").Select
End Sub
Bookmarks