Easiest first...........a manual calc can be done by hitting the F9 key or
select any cell and hit F2 which puts you into edit mode then hit the ENTER key
to calculate the sheet.
Or double-click on a cell and hit ENTER.
This is the equivalent of removing the formula then putting it back.
To see the Colorindex numbers................see David's site at
http://www.mvps.org/dmcritchie/excel/colors.htm
Or run this macro which will add a new sheet and a list of the colorindexes
numbers with the colors.........store it in a module as you were shown in last
post then Tools>Macro>Macros.
Select the macro by name then Run.
Sub ListColorIndexes()
Dim Ndx As Long
Sheets.Add
For Ndx = 1 To 56
Cells(Ndx, 1).Interior.ColorIndex = Ndx
Cells(Ndx, 2).Value = Hex(ThisWorkbook.Colors(Ndx))
Cells(Ndx, 3).Value = Ndx
Next Ndx
End Sub
Gord