1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| Sub CodeRepet(c As Integer, colonne As Integer)
sh1.Cells(c, colonne).Interior.Color = RGB(225, 233, 243)
sh1.Cells(c, colonne).Borders(xlEdgeLeft).Weight = xlThin
sh1.Cells(c, colonne).Borders(xlEdgeTop).Weight = xlThin
sh1.Cells(c, colonne).Borders(xlEdgeBottom).Weight = xlThin
sh1.Cells(c, colonne).Borders(xlEdgeRight).Weight = xlThin
sh1.Cells(c, colonne).Font.Name = "Calibri"
sh1.Cells(c, colonne).Font.Size = 10
sh1.Cells(c, colonne).Font.Bold = True
End Sub
Sub Main
'Code avant
CodeRepet 8,16
'Code après
End Sub |