Cool.
J' ai un petit bug. Tu peux m'indiquer où le placer ?
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Application.ScreenUpdating = False
If Not Application.Intersect(Target, Range("A8:A65536")) Is Nothing Then
ActiveCell.EntireRow.Insert
Range("A7:w7").Copy ActiveCell
ActiveCell.RowHeight = 11.25
Cancel = True
End If
End Sub