ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Row Column Cross Hair (https://www.excelbanter.com/excel-worksheet-functions/204639-row-column-cross-hair.html)

h2fcell

Row Column Cross Hair
 
What version did Excel start highlighting the column letter and row number of
the active cell? Is there a way to extend that highlighting into the sheet
to the active cell?

Mike H

Row Column Cross Hair
 
Hi,

Not sure when first introduced but this will do the highlighting you require

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

Mike

"h2fcell" wrote:

What version did Excel start highlighting the column letter and row number of
the active cell? Is there a way to extend that highlighting into the sheet
to the active cell?


Pete_UK

Row Column Cross Hair
 
I first used Excel 97, and I think the row and column identifiers of
the active cell were emboldened in that.

Chip Pearson has an add-in he

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

to highlight the active cell.

Hope this helps.

Pete

On Oct 1, 2:31*pm, h2fcell wrote:
What version did Excel start highlighting the column letter and row number of
the active cell? *Is there a way to extend that highlighting into the sheet
to the active cell?



h2fcell

Row Column Cross Hair
 
I wrote the below code that gives me a moving highlighted row through a range.
The below code works when is copied to the "ThisWorkbook" Object and the
file is saved an reopened.
It works for me.

Private WithEvents App As Application

Private Sub App_SheetSelectionChange(ByVal Sh As Object, ByVal Target As
Range)

With Range("A1:S100").Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With

Ar = ActiveCell.Row
With Range(Cells(Ar, "a"), Cells(Ar, "s")).Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent3
.TintAndShade = 0.799981688894314
.PatternTintAndShade = 0
End With

End Sub

Private Sub Workbook_Open()
Set App = Application
End Sub



"Mike H" wrote:

Hi,

Not sure when first introduced but this will do the highlighting you require

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

Mike

"h2fcell" wrote:

What version did Excel start highlighting the column letter and row number of
the active cell? Is there a way to extend that highlighting into the sheet
to the active cell?



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

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