Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
cassy01
 
Posts: n/a
Default Highlight Row when selected


hi is it possible to highlight a row when you select a cell on a row.

For example I select B28, the row B becomes highlighted, then when i
click on B29 that one becomes highlighted and B28 becomes
un-highlighted.

The only cells on each row i wont highlighting is B:I.

Thanks :)


--
cassy01
------------------------------------------------------------------------
cassy01's Profile: http://www.excelforum.com/member.php...nfo&userid=780
View this thread: http://www.excelforum.com/showthread...hreadid=422013

  #2   Report Post  
dominicb
 
Posts: n/a
Default


Good morning (again) Cassy01

Chip Pearson provides an add in that will highlight the rows as you are
working. If you want this you can download it from he

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

HTH

DominicB


--
dominicb
------------------------------------------------------------------------
dominicb's Profile: http://www.excelforum.com/member.php...o&userid=18932
View this thread: http://www.excelforum.com/showthread...hreadid=422013

  #3   Report Post  
Don Guillett
 
Posts: n/a
Default

right click sheet tabview codeinsert thisSAVE

'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
--
Don Guillett
SalesAid Software

"cassy01" wrote in
message ...

hi is it possible to highlight a row when you select a cell on a row.

For example I select B28, the row B becomes highlighted, then when i
click on B29 that one becomes highlighted and B28 becomes
un-highlighted.

The only cells on each row i wont highlighting is B:I.

Thanks :)


--
cassy01
------------------------------------------------------------------------
cassy01's Profile:

http://www.excelforum.com/member.php...nfo&userid=780
View this thread: http://www.excelforum.com/showthread...hreadid=422013



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
highlight selected row permanently until u move out from the row nwhan Excel Discussion (Misc queries) 5 June 3rd 05 01:57 AM
Perform oiperations relative to initial selected cell scratching my head Excel Discussion (Misc queries) 1 May 30th 05 05:42 PM
Cells no longer highlight when selected Stephen Excel Discussion (Misc queries) 0 April 22nd 05 08:31 PM
How do I change the highlight color of selected menu items? PepperVL Excel Discussion (Misc queries) 1 March 12th 05 02:13 PM
How to highlight row and column of the selected cell Row_Column_Highlight Excel Discussion (Misc queries) 2 February 27th 05 10:48 PM


All times are GMT +1. The time now is 09:23 PM.

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"