I'm trying to run a macro to pull key stock statistics from finance.yahoo.com from a list of ticker symbols without having to individually select the tickers. I'm also trying to format the data in the macro as well, but I can certainly do this after the fact if it's not possible.

This is what I've gotten so far:

Sub Macro6()
'
' Macro6 Macro
'
' Keyboard Shortcut: Ctrl+n
'
ActiveCell.Select
With ActiveSheet.QueryTables.Add(Connection:= _
"FINDER;C:\Users\user\Documents\Personal\Key Stock Statistics.iqy", _
Destination:=ActiveCell.Offset(0, 0))
.Name = "Key Stock Statistics_35"
.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 = "9,12,14,16,18,20,22,26,28,30"
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
ActiveCell.Offset(0, 0).Range("A1:A76").Select
Selection.Delete Shift:=xlToLeft
ActiveCell.Cells.Select
ActiveCell.Cells.EntireColumn.AutoFit
End Sub

My ticker symbols are in row 1 and my descriptions for the data are in column A. Any help would be greatly appreciated!