Sub WebPull()
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;https://ebet.tab.co.nz/odds/" & Sheets("race").Range("ac7").Value & Sheets("race").Range("ab7").Value & Sheets("race").Range("aa7").Value & ".html", Destination:=Range("$w$13"))
.Name = False
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlOverwriteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = False
.RefreshPeriod = 1
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
Call Macro152 'Transfers record sheet
End Sub