Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Naum
 
Posts: n/a
Default How can I determine cell color?

I am color blind (to same extent). Sometimes I need to determine what is cell
(or font) color in an existing worksheet. I would like to be able to
right-click on a cell and see what is its background color. Or right-click on
a letter/digit in a cell and see what is font color and background color. I
assume that does NOT exist now. How can I deliver my request to the Excel
development group?

If you respond, PLEASE notify me at

Thanks
Naum

  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default How can I determine cell color?

Add this sub

Sub ColorIndex()
Dim msg As String

If Selection.Cells.Count 1 Then
MsgBox "Too many cells selected", vbExclamation, "ColorIndex"
Else
MsgBox "Active cell colour is " & ActiveCell.Interior.ColorIndex,
vbInformation, "ColorIndex"
End If
End Sub

Then create a right-click menu option with

'-----------------------------------------------------------------
Private Sub Workbook_Open()
'-----------------------------------------------------------------
With Application.CommandBars("Cell")
With .Controls.Add(Type:=msoControlButton, temporary:=True)
.Caption = "Color"
.BeginGroup = True
.Style = msoButtonCaption
.OnAction = "ColorIndex"
End With
End With
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code



--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

"Naum" wrote in message
...
I am color blind (to same extent). Sometimes I need to determine what is

cell
(or font) color in an existing worksheet. I would like to be able to
right-click on a cell and see what is its background color. Or right-click

on
a letter/digit in a cell and see what is font color and background color.

I
assume that does NOT exist now. How can I deliver my request to the Excel
development group?

If you respond, PLEASE notify me at

Thanks
Naum



  #3   Report Post  
Posted to microsoft.public.excel.misc
Jim Cone
 
Posts: n/a
Default How can I determine cell color?

How many color blind Excel users are there out there?
It's conceivable that someone might take it on themselves to
write an Excel add-in, to identify colors (by index and name), and give it away.
But there would have to be some indication that demand exists.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"Naum"
wrote in message
I am color blind (to same extent). Sometimes I need to determine what is cell
(or font) color in an existing worksheet. I would like to be able to
right-click on a cell and see what is its background color. Or right-click on
a letter/digit in a cell and see what is font color and background color. I
assume that does NOT exist now. How can I deliver my request to the Excel
development group?
If you respond, PLEASE notify me at
Thanks
Naum

  #4   Report Post  
Posted to microsoft.public.excel.misc
Jim Cone
 
Posts: n/a
Default How can I determine cell color?

No demand at all has appeared. But not being deterred by facts
when you want to do something, I have written an Excel add-in that
might help some Excel users.
It adds a menu item to the popup menu that appears when a cell
is right-clicked. The menu lists the cell color, font color and cell location.

If anyone would like to try the add-in and provide any comments or
suggestions about it, my email is: XX
(remove xxx from the address)
--
Jim Cone
San Francisco, USA
http://www.officeletter.com/blink/specialsort.html



"Jim Cone" wrote in message ...
How many color blind Excel users are there out there?
It's conceivable that someone might take it on themselves to
write an Excel add-in, to identify colors (by index and name), and give it away.
But there would have to be some indication that demand exists.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"Naum"
wrote in message
I am color blind (to same extent). Sometimes I need to determine what is cell
(or font) color in an existing worksheet. I would like to be able to
right-click on a cell and see what is its background color. Or right-click on
a letter/digit in a cell and see what is font color and background color. I
assume that does NOT exist now. How can I deliver my request to the Excel
development group?
If you respond, PLEASE notify me at
Thanks
Naum

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Urgent date/scheduling calc needed jct Excel Worksheet Functions 3 February 24th 06 02:36 AM
Conditionally setting background color of a cell Scott Steiner Excel Discussion (Misc queries) 1 November 20th 05 01:11 PM
Color a single digit in a mult-digit number cell Phyllis Excel Discussion (Misc queries) 6 November 17th 05 01:46 AM
Cell Change Color - Need Help alani New Users to Excel 3 June 29th 05 04:50 PM
Identifying the Active Fill Color Steve Conary Excel Discussion (Misc queries) 3 December 9th 04 05:45 AM


All times are GMT +1. The time now is 09:55 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"