bonjour
je voudais savoir comment faire pour ne pas avoir toutes mes cellules de selection mais simplement si je selectionne la case a par un x elle active ThisWorkbook.Sheets("copie").range("zaza").Copy dans la cellule g
Private Sub Worksheet_Change(ByVal Target As range)
If Target.Column = 1 Then
With range(Cells(Target.Row, 3), Cells(Target.Row, 36)).Interior
Select Case Target.Value
Case "x"
.ColorIndex = 15
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
Case Else
.ColorIndex = xlNone
End Select
ThisWorkbook.Sheets("copie").range("zaza").Copy range("g:g")
End With
End If
End Sub
merci de votre aide

pat