Dave
I copied your script on conditional formating. Have to admit I've NEVER done this and am totally guessing on how to do this after reading yours and Bob's link references. I made changes to the colors and the triggers, but don't know how to tell the script to look at column Y and change colors in columns BCD of that same row.
How do I know if the script is "saved" how do I know if it is "running" and did I guess right at how to direct the script to the right columns? (I also tried typing in -21 as the target range instead of B

, didn't seem to work.
I pasted it into the worksheet code by right clicking on the tab
Private Sub Worksheet_Change(ByVal Target As Range
'David McRitchie, 2000-08-08 rev. 2000-08-1
'
http://www.mvps.org/dmcritchie/excel/event.ht
Dim vLetter As Strin
Dim vColor As Intege
Dim cRange As Rang
Dim cell As Rang
'***************** check range ***
Set cRange = Intersect(Range("Y:Y"), Range(Target("B

").Address)
If cRange Is Nothing Then Exit Su
'*********************************
For Each cell In Targe
vLetter = UCase(Left(cell.Value & " ", 1)
'see colors.htm and event.htm in same directory a
'
http://www.mvps.org/dmcritchie/excel/excel.ht
vColor = 0 'default is no colo
'-- 1 53 52 51 49 11 55 56 9 46 12 10 14 5 47 16 3 45 43 50 42 41 13 48 7 44 6 4 8 33 54 15 38 40 36 35 34 37 39 2 (see colors page) 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 '-
Select Case vLette
Case "A
vColor = 3
Case "B
vColor = 3
Case "C
vColor = 4
Case "D
vColor = 3
Case "K
vColor = 1
End Selec
Application.EnableEvents = False 'should be part of Change macr
cell.Interior.ColorIndex = vColo
Application.EnableEvents = True 'should be part of Change macr
Next cel
'Target.Offset(0, 1).Interior.colorindex = vColo
' use Text instead of Interior if you prefe
End Su
THANKS!!
Holly