Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Not sure exactly what you want, but this sub will give the colorindex in
column A, the corresponding color value (numeric, the RGB value) in column B, and will fill the cell in column C with the specified color: Public Sub ShowFillColors() For i = 1 To 56 Sheets("Sheet1").Range("A" & i).Value = i Sheets("Sheet1").Range("C" & i).Interior.ColorIndex = i Sheets("Sheet1").Range("B" & i).Value = Sheets("Sheet1").Range("C" & i).Interior.Color Next i End Sub "Max" wrote: Hi guys, (Apologies for the earlier post w/o any subject line) I'm looking for a sub which can list all the colorindexes down say col A, and all the corresponding fill colors in col B ? -- Rgds Max xl 97 --- GMT+8, 1° 22' N 103° 45' E xdemechanik <atyahoo<dotcom ---- |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
TWO DIFFERENT FILL COLOURs ON MENU BAR | Excel Discussion (Misc queries) | |||
Cell Fill colours | Excel Discussion (Misc queries) | |||
fill colours | Setting up and Configuration of Excel | |||
Fill colours | Excel Worksheet Functions | |||
Sub to list colorindexes and the corresponding fill colours | Excel Programming |