Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
When I use .font.colorindex = 5 for example, I put the number
randomly. Is there a way to find out what numbers represent which color? Thanks. How come when I type *.font.* I don't see a list of values I can pu like size or colorindex, etc. Thanks -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
have a look at http://www.mvps.org/dmcritchie/excel/colors.htm -----Original Message----- When I use .font.colorindex = 5 for example, I put the numbers randomly. Is there a way to find out what numbers represent which color? Thanks. How come when I type *.font.* I don't see a list of values I can put like size or colorindex, etc. Thanks. --- Message posted from http://www.ExcelForum.com/ . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
As for your second question, some objects handle the autocomplete an
others don't. For example, typing: Range("A1").Font. will give you a list of options, while: cells(1,1).Font. will not. -- Message posted from http://www.ExcelForum.com |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Christiane,
Put this code into a macro and run it on a new empty worksheet. It will give you a colour sheet of the whole rang. They are numbered from 0 to 56 and some are quite similar to each other. Steve For n = 0 To 56 Range("A" & Trim$(Str$(n + 1))) = n Range("B" & Trim$(Str$(n + 1))) = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" Rows(Trim$(Str$(n + 1)) & ":" & Trim$(Str$(n + 1))).Select Selection.Font.ColorIndex = n Next n Columns("A:B").Select Selection.Columns.AutoFit Range("A1").Select Christiane wrote in message ... When I use .font.colorindex = 5 for example, I put the numbers randomly. Is there a way to find out what numbers represent which color? Thanks. How come when I type *.font.* I don't see a list of values I can put like size or colorindex, etc. Thanks. --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Autofilter list arrow colors | Excel Discussion (Misc queries) | |||
Drop-down list with same character but in different colors | Excel Worksheet Functions | |||
how do i find the colors in excel 2003 | Setting up and Configuration of Excel | |||
list 1 has 400 names List 2 has 4000. find manes from list 1 on 2 | Excel Worksheet Functions | |||
Validation List, Automatic Colors | Excel Worksheet Functions |