[/FONT]
[FONT=Courier New]Option Explicit[/FONT]
[FONT=Courier New]Sub CopywebContententTOsheet()
With ActiveSheet.QueryTables.Add(Connection:= _ "URL;http://www.cpepirouette.com/_liste_milieux_familiaux/mf_id/536", _ Destination:=Range("$C$46"))
.Name = "536"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
Application.Goto Range("C146")
End Sub