Sub SupVirguleEspace()
Dim Cel_en_Cours As Range
For Each Cel_en_Cours In Selection
If Right(Cel_en_Cours.Value, 2) = ", " Then Cel_en_Cours.Value = Left(Cel_en_Cours.Value, Len(Cel_en_Cours.Value) - 2)
Next Cel_en_Cours
End Sub
Bonjour Aphrodyte, le forum
En formule ou en macro ?
Bien cordialement, @+
Sub SupVirguleEspace()
Dim Cel_en_Cours As Range
For Each Cel_en_Cours In Selection
If Right(Cel_en_Cours.Value, 2) = ", " Then Cel_en_Cours.Value = Left(Cel_en_Cours.Value, Len(Cel_en_Cours.Value) - 2)
Next Cel_en_Cours
End Sub