> Try conditional formatting.
>
[quoted text clipped - 23 lines]
> >
> > Thanks.
'-----------------------------------------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
'-----------------------------------------------------------------
Const WS_RANGE As String = "C:C" '<=== change to suit
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 > 3000: .Entirerow.Interior.ColorIndex = 3 'red
Case > 2500: .Entirerow.Interior.ColorIndex = 6 'yellow
Case >1500: .Entirerow.Interior.ColorIndex = 5 'blue
Case >1000: .Entirerow.Interior.ColorIndex = 10 'green
'etc.
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.

Signature
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
> Hi,
> I understand that conditional formatting can be used to do just that.
[quoted text clipped - 31 lines]
>> >
>> > Thanks.
Don Doan - 29 Jan 2008 14:23 GMT
Oh, thank you so much for the details..I will test it out.
On the side, I really like to start learning how to write program in Excel,
where would be a good start??
> '-----------------------------------------------------------------
> Private Sub Worksheet_Change(ByVal Target As Range)
[quoted text clipped - 59 lines]
> >> >
> >> > Thanks.