Sub format_texte()
Application.EnableEvents = False
Application.ScreenUpdating = False
ActiveSheet.Unprotect Password:=""
Range("E2:E39").Select
With Selection
.MergeCells = False
End With
Dim rgn As Range
Set rgn = Worksheets("Argumentation").Range("f2")
' Copie
rgn.Copy Destination:=Worksheets("Argu_Objections").Range("e2")
Range("e2").EntireColumn.ColumnWidth = rgn.EntireColumn.ColumnWidth
Range("e2").EntireRow.RowHeight = rgn.EntireRow.RowHeight
Range("E2:E39").Select
With Selection
.MergeCells = True
End With
ActiveSheet.Protect Password:="", DrawingObjects:=True, Contents:=True, Scenarios:=True
Application.EnableEvents = True
Application.ScreenUpdating = True
End Sub