Sub TheColorIndex()
Dim i As Byte
For i = 1 To 56
With Cells(i, 1)
.Interior.ColorIndex = i
.Value = i
End With
Next
End Sub