No worries guys, I worked it all out.
Just to explain in case anyone else comes up to the problem these are the steps I took.
I saved each web query indervidually.
I then created a command button with this code for each day:
Sub SaturdayRefresh()
Sheets("Daily 121").Select
With ActiveSheet.QueryTables.Add(Connection:= _
"FINDER;file location here", Destination:=Range( _
"A1"))
.Name = "[b] file name here[b]"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = False
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingAll
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.Refresh BackgroundQuery:=False
End With
End Sub
Bookmarks