right click sheet tab>view code>insert this>save
'McCurdy.Here is something inspired by Don Guillett.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim MyRng As Range
Set MyRng = Target.EntireRow
Application.EnableEvents = False
On Error GoTo end1
Application.Cells.FormatConditions.Delete
With MyRng
.FormatConditions.Add Type:=xlExpression, Formula1:= _
"=ROW()=ROW(INDIRECT(CELL(""address"")))"
With .FormatConditions(1).Font
.Bold = True
.Italic = False
.ColorIndex = 1
End With
.FormatConditions(1).Interior.ColorIndex = 36
End With
end1:
Application.EnableEvents = True
End Sub

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
>
> is it possible to a row to be highlighted automatically when the cursor
[quoted text clipped - 4 lines]
> and when i press enter and the cursor drops down to A2, then that row
> will be highlighted. and A1 is no longer highlighted...
just1creation - 18 Jul 2006 15:50 GMT
thank you...

Signature
just1creation
just1creation - 18 Jul 2006 16:05 GMT
can you make it so that when you print it still looks the same...
because now when i print it, it shows that it is highlight and in bold
letters.:)

Signature
just1creation
Don Guillett - 18 Jul 2006 16:52 GMT
You can comment out the code or select a cell(row) outside the print range
or use a before print event in the ThisWorkbook module to remove the
formatting.

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
>
> can you make it so that when you print it still looks the same...
> because now when i print it, it shows that it is highlight and in bold
> letters.:)
just1creation - 19 Jul 2006 14:23 GMT
how come now i can't copy and paste
Don Guillett - 19 Jul 2006 16:23 GMT
Because this is a SELECTION event. If you want to do that on that sheet then
comment out the code or change to a worksheet_change event so the row will
not be highlighted unless you change something.

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
>
> how come now i can't copy and paste?
Don Guillett - 18 Jul 2006 16:11 GMT
glad to help

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
>
> thank you...