Sub Construire()
Application.ScreenUpdating = False
Cells.EntireRow.Hidden = False
Cells.Clear
For L = 1 To 26
Ligne = 21 * L - 20
Lettre = Chr(64 + L)
Rows(Ligne).Interior.Color = RGB(0, 0, 255)
With Cells(Ligne, "A")
.Font.Color = vbWhite
.Font.Bold = True
.Font.Size = 12
.Value = Lettre
End With
Next L
End Sub