Thanks everyone. I guess my macro worked, but I just didn't have the right
color code, which was 20 it appears, and it may not have been in the 5th row
after all.
D
run this in a new workbook and then save the workbook.
Sub Colors()
Dim ctr As Long
For ctr = 1 To 56
Cells(ctr, 1).Interior.ColorIndex = ctr
Cells(ctr, 2).Value = "'" & Right("000000" & _
Hex(ThisWorkbook.Colors(ctr)), 6)
Cells(ctr, 3).Value = ctr
Cells(ctr, 4).Value = Cells(ctr, 1).Interior.Color
Cells(ctr, 2).Font.Name = "Arial"
Cells(ctr, 2).HorizontalAlignment = xlRight
Cells(ctr, 3).HorizontalAlignment = xlCenter
Cells(ctr, 4).HorizontalAlignment = xlLeft
Next ctr
End Sub

Signature
Gary
> Thanks everyone. I guess my macro worked, but I just didn't have the right
> color code, which was 20 it appears, and it may not have been in the 5th row
[quoted text clipped - 70 lines]
>>>>> >> Thanks much!
>>>>> >> Dean