Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Trying to use an IF formula w/ Colored Cell 2

Status
Not open for further replies.

waladd

Technical User
Feb 18, 2007
11
US
I'm trying to create a formula that reads the cell background color and reports a specific answer for that cell. My Human Resources department needs the employee schedule one way, while my employees are use to looking at it in a totally different format. HR uses a color key to code whether someone is sick, on in one area or another etc. The colors are listed in excel as Red, Rose, Light Green, Light Yellow. There is no conditional formating, I have not used VB editor before. These schedules are in two different workbooks. I'm using Office 2003 Pro.
 



Hi,

Copy this function and paste in a MODULE in your VB Editor - Tools/Macro/Visual Basic Editor - Insert/Module

Skip,

[glasses] [red][/red]
[tongue]
 


...Sorry

Code:
Function WhatInteriorColor(rng As Range) As String
    'Red, Rose, Light Green, Light Yellow
    Select Case rng.Interior.ColorIndex
        Case 3
            WhatInteriorColor = "Red"
        Case 38
            WhatInteriorColor = "Rose"
        Case 35
            WhatInteriorColor = "Light Green"
        Case 36
            WhatInteriorColor = "Light Yellow"
        Case Else
            WhatInteriorColor = "Other"
    End Select
End Function
You can use this function on your sheetm as you would any other function. Insert/Formula - User Defined...

Skip,

[glasses] [red][/red]
[tongue]
 




By the way, the values that are tested in this function, ASSUME that the Standard Collor Pallet is being used.

The color pallet can be changed via Tools/Options - Color tab and changing the pallet, can change the results of this function.

Skip,

[glasses] [red][/red]
[tongue]
 
ok, only need to know if I can do things such as IF "Rose" then "L", if "Light Yellow" then "ON". I appreciate this so much, thank you.
 
Tried this:
=WhatInteriorColor('[ANCILLARY 2007.xls]0211-0224'!$F$7)*IF('[ANCILLARY 2007.xls]0211-0224'!$F$7="Rose","L",IF('[ANCILLARY 2007.xls]0211-0224'!$F$7="Light Yellow","ON",IF('[ANCILLARY 2007.xls]0211-0224'!$F$7="Red","SICK",IF('[ANCILLARY 2007.xls]0211-0224'!$F$7="Light Green","PH","OFF"))))

But getting #Value error
 


The WhatInteriorColor takes ONE argument, that is the cell reference that you want to know the color of.
[tt]
=if(WhatInteriorColor('[ANCILLARY 2007.xls]0211-0224'!$F$7)="Rose","L",if(WhatInteriorColor('[ANCILLARY 2007.xls]0211-0224'!$F$7)="Light Yellow","ON",if(WhatInteriorColor('[ANCILLARY 2007.xls]0211-0224'!$F$7)="Red","SICK,if(WhatInteriorColor('[ANCILLARY 2007.xls]0211-0224'!$F$7)="Light Green","PH","OFF"))))
[/tt]


Skip,

[glasses] [red][/red]
[tongue]
 
Perfect Thank You SOOOO Much.

[2thumbsup]
:-D
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top