Sub Macro1()
'
' Macro1 Macro
'
'
Dim ws As Worksheet
Set ws = ActiveSheet
Rows("6:16").Select
Range("A16").Activate
Selection.Copy
Sheets("bdd").Select
Rows("2:2").Select
Selection.Insert Shift:=xlDown
Range("A1").Select
ws.Select 'ici comment retourner sur la feuille prescedement selectionn?e
Application.CutCopyMode = False
End Sub