bonjour,
je colore mes cellules pour l'instant sela fonction trés bien mais je voudrais appliquer la fonction zaza pour qu'elle s'execute en meme temps.
je suis sur excel 2000
Code :
PrivateSub Worksheet_Change(ByVal Target As range)If Target.Column = 1ThenWith range(Cells(Target.Row, 3), Cells(Target.Row, 36)).InteriorSelectCase Target.ValueCase"x" .ColorIndex = 15 .Pattern = xlSolid .PatternColorIndex = xlAutomatic CaseElse .ColorIndex = xlNone EndSelectEndWithEndIfEndSubPrivateSub Worksheet_Change(ByVal Target As Excel.range)If Target.Column = 1ThenIf Target = "x"ThenWith range(Cells(Target.Row, 7), Cells(Target.Row, 37)).Interior ThisWorkbook.Sheets("ne pas toucher").range("zaza").CopyEndWithEndIfEndSublà je suis un peu perdue pourriez vous m'aider merci d'avance
pat