Function CellColorIndex

nehpets12

Active Member
Joined
Feb 22, 2002
Messages
453
I am using cpearsons code from http://www.cpearson.com/excel/colors.htm

It there a way of only running this code from a certain worksheet
something like If ActiveSheet.Name <> "Subassy" Then End

I only need this to run on this worksheet


Code:
Function CellColorIndex(InRange As Range, Optional _
    OfText As Boolean = False) As Integer
   
    Application.Volatile True
    If OfText = True Then
    CellColorIndex = InRange(1, 1).Font.ColorIndex
    Else
    CellColorIndex = InRange(1, 1).Interior.ColorIndex
    End If

End Function
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Like this?

Code:
Function CellColorIndex(InRange As Range, Optional _
    OfText As Boolean = False) As Variant
    If Application.Caller.Parent.Name <> "Subassy" Then
        CellColorIndex = CVErr(xlErrNA)
        Exit Function
    End If
    Application.Volatile True
    If OfText = True Then
    CellColorIndex = InRange(1, 1).Font.ColorIndex
    Else
    CellColorIndex = InRange(1, 1).Interior.ColorIndex
    End If
End Function
 
Upvote 0

Forum statistics

Threads
1,214,861
Messages
6,121,969
Members
449,059
Latest member
oculus

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top