Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
kcholly
 
Posts: n/a
Default high light row your working in

If I'm working in a cell, is there a way to high light the entire row so you
can follow it to the column you want.
  #2   Report Post  
Rowan
 
Posts: n/a
Default

shift + enter


"kcholly" wrote:

If I'm working in a cell, is there a way to high light the entire row so you
can follow it to the column you want.

  #3   Report Post  
RagDyer
 
Posts: n/a
Default

Just click on the row number in the row header.

You might also want to check this out:

http://www.cpearson.com/excel/RowLiner.htm

--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================

"kcholly" wrote in message
...
If I'm working in a cell, is there a way to high light the entire row so you
can follow it to the column you want.

  #4   Report Post  
Pank Mehta
 
Posts: n/a
Default

I asked the same question the other day and was given the following code bu
JulieD which worked a treat for me.

Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Static Roww As Integer
Static NotFirstTime As Boolean
Application.EnableEvents = False
If NotFirstTime Then ' remove color fill from prior row
Range(Cells(Roww, 1), Cells(Roww, 10)).Interior.ColorIndex = xlNone
Else
NotFirstTime = True
End If
Range(Cells(Target.Row, 1), Cells(Target.Row, 10)).Select
Roww = Selection.Row ' save current row for uncoloring when row exited
Selection.Interior.ColorIndex = 4 ' color current row
Application.EnableEvents = True
End Sub

The following code was also provided by Bob Phillips which also worked a
treat (Please noter that comment that Bob has inserted after the code!!)

'----------------------------------------------------------------
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
'----------------------------------------------------------------
Cells.FormatConditions.Delete
With Target.EntireRow
.FormatConditions.Add Type:=xlExpression, Formula1:="TRUE"
With .FormatConditions(1)
With .Borders(xlTop)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = 5
End With
With .Borders(xlBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = 5
End With
End With
.FormatConditions(1).Interior.ColorIndex = 20
End With

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




"RagDyer" wrote:

Just click on the row number in the row header.

You might also want to check this out:

http://www.cpearson.com/excel/RowLiner.htm

--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================

"kcholly" wrote in message
...
If I'm working in a cell, is there a way to high light the entire row so you
can follow it to the column you want.


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
Colour row that you are working on. Pank Mehta Excel Discussion (Misc queries) 4 March 29th 05 08:15 AM
Calculating Working Days will Excel Worksheet Functions 5 March 22nd 05 12:44 PM
EU Working Time Directive Trucker M Excel Discussion (Misc queries) 0 March 5th 05 09:15 PM
how do I adjust working calendar (6 day work week) in excel that . Hatem Excel Worksheet Functions 1 January 25th 05 12:04 PM
excel links update not working in auto, calculations in auto Mikey Boy Excel Worksheet Functions 0 December 7th 04 11:53 PM


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