Sub InsertionLignes()
Application.ScreenUpdating = False
If ActiveCell.Interior.Color <> RGB(255, 255, 0) Then Exit Sub ' Si pas jaune on sort
Ligne = ActiveCell.Row ' Récupération N° de ligne cliquée
For i = 1 To 3 ' Insertion de trois lignes
Rows(Ligne).Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
Next i
Rows(Ligne - 1).Select ' Copy paste ligne soulignée
Application.CutCopyMode = False: Selection.Copy
Rows(Ligne...