Pedro 22,
voici la mise en page que je compte mettre pour toutes les feuilles avec pour nom un chiffre
Cells.Select
ActiveWindow.Zoom = 70
With Selection.Font
.Name = "Century Schoolbook"
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
Range("1:5,7:8").Select
Range("A7").Activate
Selection.RowHeight = 30
Range("6:6,9:50").Select
Range("A9").Activate
Selection.RowHeight = 25
Columns("A:B").Select
Range("A3").Activate
Selection.ColumnWidth = 30
Columns("C:L").Select
Range("C4").Activate
Selection.ColumnWidth = 15
End Sub