j'ai un problème avec ce code. Je voudrais qu'il me mette automatiquement dans les cellules sélectionnées en majuscule.
Merci pour votre aide.
Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then End
If Not Application.Intersect(Target, Range("C5:C200,G5:G200")) Is Nothing Then
If Not IsEmpty(Target) Then
Application.EnableEvents = False
Target.Value = UCase(Target.Value)
Application.EnableEvents = True
End If
Else
End If
End Sub