LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #4   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default Replace conditional formatting to use 4 conditions

I'm hoping when you said colour whole column blue, you
meant row instead of column. If I read you correctly, you
CAN use a Worksheet Change event based on changes in
Column G. One way is this:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 7 And Len(Target.Value) 0 Then
ColorRange = Target.Offset(0, -6).Address & ":" &
Target.Address
Select Case Target.Value
Case 1
ActiveSheet.Range(ColorRange).Interior.ColorIndex = 5
Case 2
ActiveSheet.Range(ColorRange).Interior.ColorIndex = 3
Case 3
ActiveSheet.Range(ColorRange).Interior.ColorIndex = 10
Case 4
ActiveSheet.Range(ColorRange).Interior.ColorIndex = 4
Case Else
ActiveSheet.Range(ColorRange).Interior.ColorIndex =
xlNone
End Select
End If
End Sub

This uses a Case structure to choose a row color based on
the number in the Month row. You can fill in the rest of
the 8 month colors.

tod


-----Original Message-----
I have a table as so:

A B C D E F

G
1 Candidate Basic Car Fee % Fee

50/50 Month
2 Don Wood £32000 £5000 17.5% £6475

FALSE 3
3 Ron Kinn £44500 £5000 17.5% £8663

FALSE 3
4 Rob Simms £35000 £5000 17.5% £7000

FALSE 3
5 Jay Atkins £16000 £6000 17.5% £3850

FALSE 2
6 Ed Barry £31000 £5000 15.5% £5580

FALSE 2
7 Ron Pass £33000 £5000 17.5% £6650

FALSE 2
8 Adie Carthy £42000 £4500 12.5% £5813

FALSE 1
9 Don Carter £43000 £2000 20.0% £9000

FALSE 1

I have a 3 conditional formats that cover the whole

table, relating to
the month colum saying
1) formulais: =IF($A9<"",$G9=1) then colour whole

column blue
2) formulais: =IF($A9<"",$G9=2) then colour whole

column red
3) formulais: =IF($A9<"",$G9=3) then colour whole

column green

This is all fine and dandy until I have a month 4 to

contend with.....

I have a feeling I need to use some sort of

Worksheet_Change VBA type
cleverness. Which is beyond me.

Can anyone help? Please?
.

 
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
Conditional Formatting for 4 conditions Steve Excel Worksheet Functions 2 March 11th 10 09:13 PM
Conditional Formatting - more than 3 conditions LinLin Excel Discussion (Misc queries) 4 January 19th 09 10:05 PM
More conditions for Conditional Formatting? Ed Excel Discussion (Misc queries) 1 April 13th 06 08:22 AM
Need 6 Conditions / Conditional Formatting Rothman Excel Worksheet Functions 4 March 14th 06 10:07 PM
more than 3 conditions in conditional formatting - possible? rob curtis Excel Discussion (Misc queries) 11 August 17th 05 04:02 PM


All times are GMT +1. The time now is 09:52 AM.

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

About Us

"It's about Microsoft Excel"