Sub Macro_test()
Range("A1:I1").Interior.ColorIndex = 39
Range("A29:I29").Interior.ColorIndex = 40
With Range("A2:I28")
With .Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = 3
End With
With .Borders(xlEdgeTop)
.LineStyle = xlContinuous
.Weight = xlHairline
.ColorIndex = 3
End With
With .Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlHairline
.ColorIndex = 3
End With
With .Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = 3
End With
With .Borders(xlInsideVertical)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = 3
End With
With .Borders(xlInsideHorizontal)
.LineStyle = xlContinuous
.Weight = xlHairline
.ColorIndex = 3
End With
End With
With Range("A1:I1,A29:I29")
With .Borders(xlEdgeLeft)
.LineStyle = xlDouble
.Weight = xlThick
.ColorIndex = 44
End With
With .Borders(xlEdgeTop)
.LineStyle = xlDouble
.Weight = xlThick
.ColorIndex = 44
End With
With .Borders(xlEdgeBottom)
.LineStyle = xlDouble
.Weight = xlThick
.ColorIndex = 44
End With
With .Borders(xlEdgeRight)
.LineStyle = xlDouble
.Weight = xlThick
.ColorIndex = 44
End With
With .Borders(xlInsideVertical)
.LineStyle = xlDouble
.Weight = xlThick
.ColorIndex = 44
End With
End With
Columns("H:H").ColumnWidth = 25
With Range("H20")
.Value = "Bon Dimanche"
.Interior.ColorIndex = 35
.HorizontalAlignment = xlCenter
.Font.ColorIndex = 5
.Font.Bold = True
.Characters(Start:=1, Length:=1).Font.ColorIndex = 3
.Characters(Start:=5, Length:=1).Font.ColorIndex = 3
End With
End Sub