Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Fred Stoll
 
Posts: n/a
Default Conditional Formatting is limited to 3 conditions, any way I can .

If anyone has any information regarding this, please reply or contact me.
  #2   Report Post  
Gord Dibben
 
Posts: n/a
Default

Fred

Putting your question in the subject line means it gets truncated to the point
where we cannot read it.

Post in the body of your message in future.

If you need 6 conditions see John McGimpsey's site.

http://www.mcgimpsey.com/excel/conditional6.html

If need more than 6, you will require code.

Sample.......

Private Sub Worksheet_Change(ByVal Target As Range)
Dim Num As Long
Dim Rng As Range
Dim vRngInput As Variant
Set vRngInput = Intersect(Target, Range("A:A"))
If vRngInput Is Nothing Then Exit Sub
For Each Rng In vRngInput
'Determine the color
Select Case Rng.Value
Case Is <= 0: Num = 10 'green
Case 0 To 5: Num = 1 'black
Case 5 To 10: Num = 5 'blue
Case 10 To 15: Num = 7 'magenta
Case 15 To 20: Num = 46 'orange
Case 20 To 25: Num = 6 'yellow
Case Is 25: Num = 3 'red
End Select
'Apply the color
Rng.Font.ColorIndex = Num
Next Rng
End Sub


Gord Dibben Excel MVP

On Thu, 10 Feb 2005 15:01:11 -0800, "Fred Stoll" <Fred
wrote:

If anyone has any information regarding this, please reply or contact me.


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
More than 3 Conditional Formatting Conditions Beth H Excel Worksheet Functions 12 January 6th 06 07:35 PM
why am i limited to only 3 conditional formatting? yigalb Excel Discussion (Misc queries) 4 February 12th 05 04:46 AM
Conditional Formatting Blank =white.. but 4 conditions Junior Excel Worksheet Functions 3 December 18th 04 08:32 AM
Adding more than three Conditions to 'Conditional Formatting' David McRitchie Excel Discussion (Misc queries) 1 November 27th 04 06:03 PM
Extend conditional formatting to more than 3 conditions Danny Excel Worksheet Functions 1 November 10th 04 10:57 AM


All times are GMT +1. The time now is 04:57 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"