ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Enter a value dependant on the colour of a cell (https://www.excelbanter.com/excel-discussion-misc-queries/86496-enter-value-dependant-colour-cell.html)

cdb

Enter a value dependant on the colour of a cell
 
I have a spreadsheet that has been partially filled by someone else. They
have filled in all cells relating to a certain condition with the background
colour of yellow. Unfortunately this is the only indicator he has used, and I
now need to filter based on the colour selection.

What I am wanting to do is enter a value in a cell dependant on the colour
of a different cell. What I mean by this is that if the background colour of
B2 is yellow, put YES in A2 and so on down the rows.

Can anyone offer me some advice on this?

Cheers,

cdb

Bob Phillips

Enter a value dependant on the colour of a cell
 
You need a simple UDF

Function ColorIndex(rng As Range)
If rng.Cells.Count 1 Then
ColorIndex = CVErr(xlErrRef)
Else
ColorIndex = rng.Interior.ColorIndex
End If
End Function

and use that in the worksheet like so

=If(ColorIndex(B2)=6,"YES","")

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

"cdb" wrote in message
...
I have a spreadsheet that has been partially filled by someone else. They
have filled in all cells relating to a certain condition with the

background
colour of yellow. Unfortunately this is the only indicator he has used,

and I
now need to filter based on the colour selection.

What I am wanting to do is enter a value in a cell dependant on the colour
of a different cell. What I mean by this is that if the background colour

of
B2 is yellow, put YES in A2 and so on down the rows.

Can anyone offer me some advice on this?

Cheers,

cdb




Paul Lautman

Enter a value dependant on the colour of a cell
 
cdb wrote:
I have a spreadsheet that has been partially filled by someone else.
They have filled in all cells relating to a certain condition with
the background colour of yellow. Unfortunately this is the only
indicator he has used, and I now need to filter based on the colour
selection.

What I am wanting to do is enter a value in a cell dependant on the
colour of a different cell. What I mean by this is that if the
background colour of B2 is yellow, put YES in A2 and so on down the
rows.

Can anyone offer me some advice on this?

Cheers,

cdb


I typed excel filter cell color into google and found this link on the first
page:
http://support.microsoft.com/Default.aspx?kbid=213923



cdb

Enter a value dependant on the colour of a cell
 
Cheers,

Thanks for the help.

"Bob Phillips" wrote:

You need a simple UDF

Function ColorIndex(rng As Range)
If rng.Cells.Count 1 Then
ColorIndex = CVErr(xlErrRef)
Else
ColorIndex = rng.Interior.ColorIndex
End If
End Function

and use that in the worksheet like so

=If(ColorIndex(B2)=6,"YES","")

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

"cdb" wrote in message
...
I have a spreadsheet that has been partially filled by someone else. They
have filled in all cells relating to a certain condition with the

background
colour of yellow. Unfortunately this is the only indicator he has used,

and I
now need to filter based on the colour selection.

What I am wanting to do is enter a value in a cell dependant on the colour
of a different cell. What I mean by this is that if the background colour

of
B2 is yellow, put YES in A2 and so on down the rows.

Can anyone offer me some advice on this?

Cheers,

cdb





cdb

Enter a value dependant on the colour of a cell
 
Thanks for the help

"Paul Lautman" wrote:

cdb wrote:
I have a spreadsheet that has been partially filled by someone else.
They have filled in all cells relating to a certain condition with
the background colour of yellow. Unfortunately this is the only
indicator he has used, and I now need to filter based on the colour
selection.

What I am wanting to do is enter a value in a cell dependant on the
colour of a different cell. What I mean by this is that if the
background colour of B2 is yellow, put YES in A2 and so on down the
rows.

Can anyone offer me some advice on this?

Cheers,

cdb


I typed excel filter cell color into google and found this link on the first
page:
http://support.microsoft.com/Default.aspx?kbid=213923





All times are GMT +1. The time now is 01:10 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com