Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm trying to make a sheet that shows all the possible cell fill
colors available in Excel. I'm using Excel 2002, SP3. The code I made is as follows - Sub colors() Dim i As String i = 1 a = 1 Do Until a = 65536 Rows(a).Interior.Color = i i = i + 10 a = a + 1 Loop End Sub I switched the i loop to go up by 10 because I wasn't getting any good variety in colors, only red black and maroon. Even after switching to intervals of 10 I'm still only getting reds yellows and greens along with blacks... I know there should be some blues and purples. Anyone have any ideas? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I fill one cell color with text html/rgb color from another | Excel Discussion (Misc queries) | |||
Match TextBox Back Color to Cell Fill Color | Excel Programming | |||
Cell Fill Color and text color - changes for recipient | Excel Discussion (Misc queries) | |||
change fill color of a range of cells based on color of a cell? | Excel Programming | |||
Set Cell Fill Color | Excel Programming |