ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   HIGHLIGHT THE COMLETE LINE THE CURSOR IS ON AS I SCROLL (https://www.excelbanter.com/excel-programming/382816-highlight-comlete-line-cursor-i-scroll.html)

Stan

HIGHLIGHT THE COMLETE LINE THE CURSOR IS ON AS I SCROLL
 
I NEED TO HIGHLIGHT THE LINE THAT THE CURSOR IS ON AUTOMATICLY , SO AS I MOVE
THRU A LARGE SPREAD SHEET, I CAN CHECK ALL INFO ON THAT LINE.
I DO NOT WANT TO HIGHLIGHT THE COLUMN. ANY IDEAS HOW TO DO THAT.
TRY TO READ INFROMATION ON A LINE WHEN YOU HAVE 20 COLUMNS OF DATA
ON 500 LINES.

Tom Ogilvy

HIGHLIGHT THE COMLETE LINE THE CURSOR IS ON AS I SCROLL
 
right click on the sheet tab and select view code

in the resulting module put in code like this:

Private Sub Workbook_SheetSelectionChange( _
ByVal Sh As Object, _
ByVal Target As Excel.Range)
rows.Interior.ColorIndex = xlNone
Target.EntireRow.Interior.ColorIndex = 6 ' yellow - change as needed
End Sub

Note that if you try to paste a range, more than likely you won't be able to
do it and you won't be able to undo as this will clear both the clipboard (of
copied ranges) and the undo history. That is just a deleterious side
effect.

--
Regards,
Tom Ogilvy


"STAN" wrote:

I NEED TO HIGHLIGHT THE LINE THAT THE CURSOR IS ON AUTOMATICLY , SO AS I MOVE
THRU A LARGE SPREAD SHEET, I CAN CHECK ALL INFO ON THAT LINE.
I DO NOT WANT TO HIGHLIGHT THE COLUMN. ANY IDEAS HOW TO DO THAT.
TRY TO READ INFROMATION ON A LINE WHEN YOU HAVE 20 COLUMNS OF DATA
ON 500 LINES.


RominallL

HIGHLIGHT THE COMLETE LINE THE CURSOR IS ON AS I SCROLL
 
A non-code solution is to hit SHIFT-SPACE, that automatically selects the
whole row. CTRL-SPACE selects the whole column.

"STAN" wrote:

I NEED TO HIGHLIGHT THE LINE THAT THE CURSOR IS ON AUTOMATICLY , SO AS I MOVE
THRU A LARGE SPREAD SHEET, I CAN CHECK ALL INFO ON THAT LINE.
I DO NOT WANT TO HIGHLIGHT THE COLUMN. ANY IDEAS HOW TO DO THAT.
TRY TO READ INFROMATION ON A LINE WHEN YOU HAVE 20 COLUMNS OF DATA
ON 500 LINES.


Stan

HIGHLIGHT THE COMLETE LINE THE CURSOR IS ON AS I SCROLL
 
Thank you for your reply. I tried the view code ypui supplied and cannot get
it to
operate. I am writing it just as I see it. Do I havea sytax error ? I have
not used this function in the past so I cannot troubleshoot the proble.

"Tom Ogilvy" wrote:

right click on the sheet tab and select view code

in the resulting module put in code like this:

Private Sub Workbook_SheetSelectionChange( _
ByVal Sh As Object, _
ByVal Target As Excel.Range)
rows.Interior.ColorIndex = xlNone
Target.EntireRow.Interior.ColorIndex = 6 ' yellow - change as needed
End Sub

Note that if you try to paste a range, more than likely you won't be able to
do it and you won't be able to undo as this will clear both the clipboard (of
copied ranges) and the undo history. That is just a deleterious side
effect.

--
Regards,
Tom Ogilvy


"STAN" wrote:

I NEED TO HIGHLIGHT THE LINE THAT THE CURSOR IS ON AUTOMATICLY , SO AS I MOVE
THRU A LARGE SPREAD SHEET, I CAN CHECK ALL INFO ON THAT LINE.
I DO NOT WANT TO HIGHLIGHT THE COLUMN. ANY IDEAS HOW TO DO THAT.
TRY TO READ INFROMATION ON A LINE WHEN YOU HAVE 20 COLUMNS OF DATA
ON 500 LINES.


Stan

HIGHLIGHT THE COMLETE LINE THE CURSOR IS ON AS I SCROLL
 
Tom.
I copied the file and pasted it to the spreadsheet and it worked great.
Thank you for your solution. This option should still be made as a tool
option.

"Tom Ogilvy" wrote:

right click on the sheet tab and select view code

in the resulting module put in code like this:

Private Sub Workbook_SheetSelectionChange( _
ByVal Sh As Object, _
ByVal Target As Excel.Range)
rows.Interior.ColorIndex = xlNone
Target.EntireRow.Interior.ColorIndex = 6 ' yellow - change as needed
End Sub

Note that if you try to paste a range, more than likely you won't be able to
do it and you won't be able to undo as this will clear both the clipboard (of
copied ranges) and the undo history. That is just a deleterious side
effect.

--
Regards,
Tom Ogilvy


"STAN" wrote:

I NEED TO HIGHLIGHT THE LINE THAT THE CURSOR IS ON AUTOMATICLY , SO AS I MOVE
THRU A LARGE SPREAD SHEET, I CAN CHECK ALL INFO ON THAT LINE.
I DO NOT WANT TO HIGHLIGHT THE COLUMN. ANY IDEAS HOW TO DO THAT.
TRY TO READ INFROMATION ON A LINE WHEN YOU HAVE 20 COLUMNS OF DATA
ON 500 LINES.



All times are GMT +1. The time now is 06:50 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com