1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| Sub a_Tableau_Mise_en_forme2()
Dim I, J, Max As Integer
Max = mytable.Rows.count
On Error Resume Next
For I = 1 To Max
For J = 1 To mytable.Columns.count
mytable.Cell(I, J).Select
With Selection
With .Borders(wdBorderLeft)
If .LineStyle <> wdLineStyleNone Then
.Color = 10375424
.LineWidth = wdLineWidth025pt
End If
End With
With .Borders(wdBorderRight)
If .LineStyle <> wdLineStyleNone Then
.Color = 10375424
.LineWidth = wdLineWidth025pt
End If
End With
With .Borders(wdBorderTop)
If .LineStyle <> wdLineStyleNone Then
.Color = 10375424
.LineWidth = wdLineWidth025pt
End If
End With
With .Borders(wdBorderBottom)
If .LineStyle <> wdLineStyleNone Then
.Color = 10375424
.LineWidth = wdLineWidth025pt
End If
End With
End With
Next
Next
End Sub |
Partager