sURL1 = ActiveWorkbook.Sheets("URLs").Range("A6").Value
With ActiveWorkbook.Sheets("IMPORT1").QueryTables.Add(Connection:="URL;" & sURL1, _
Destination:=Sheets("IMPORT1").Range("$A$1"))
.CommandType = 0
.Name = "presse1"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.TablesOnlyFromHTML = True
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = False
.RefreshStyle = xlOverwriteCells
.SavePassword = True
.SaveData = False
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebFormatting = xlNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = True
.WebDisableDateRecognition = True
.WebDisableRedirections = True
.Refresh BackgroundQuery:=False
.Delete
End With