Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
NZJen
 
Posts: n/a
Default Create conditional IF to format cells using 6 different colours

I have a spreadsheet that I need to colour code specific cells if they meet a
certain condition. I know I can use conditional formatting but only 3
conditions can be met that way. I need to put in conditional formatting to
accept 6 different colours. How can I do this????
  #2   Report Post  
Duke Carey
 
Posts: n/a
Default

See Bob Phillips' VBA solution in a thread earlier today

http://tinyurl.com/exryx


"NZJen" wrote:

I have a spreadsheet that I need to colour code specific cells if they meet a
certain condition. I know I can use conditional formatting but only 3
conditions can be met that way. I need to put in conditional formatting to
accept 6 different colours. How can I do this????

  #3   Report Post  
Bob Phillips
 
Posts: n/a
Default

An example

Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "H1:H10"

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target
Select Case .Value
Case 1: .Interior.ColorIndex = 3 'red
Case 2: .Interior.ColorIndex = 6 'yellow
Case 3: .Interior.ColorIndex = 5 'blue
Case 4: .Interior.ColorIndex = 10 'green
End Select
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--

HTH

RP
(remove nothere from the email address if mailing direct)


"NZJen" wrote in message
...
I have a spreadsheet that I need to colour code specific cells if they

meet a
certain condition. I know I can use conditional formatting but only 3
conditions can be met that way. I need to put in conditional formatting

to
accept 6 different colours. How can I do this????



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
How do I use 3 cells to create the string for a lookup function? Bencomo Excel Worksheet Functions 1 May 15th 05 07:17 AM
How can I create custom format cells for Ohms(Ω)?? GlanzaV Excel Worksheet Functions 1 February 15th 05 05:10 PM
conditional format of data tables in charts [email protected] Charts and Charting in Excel 2 January 25th 05 03:56 PM
Determine cells that drive conditional formatting? Nicolle K. Excel Discussion (Misc queries) 2 January 7th 05 01:08 AM
Protected cells -automatically format to a different color Fred Evans Excel Discussion (Misc queries) 9 December 3rd 04 12:59 PM


All times are GMT +1. The time now is 10:06 PM.

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

About Us

"It's about Microsoft Excel"