Sub BoutonMettreEntreParenthèses()
Dim cell As Range
ActiveSheet.Unprotect Password:="."
For Each cell In Selection
If Left(cell, 1) = "(" And Right(cell, 1) = ")" Then
cell.Value = Mid(cell, 2, Len(cell) - 2)
Else
cell.Value = "(" & cell & ")"
End If
Next
ActiveSheet.Protect Password:="."
End Sub