update for rowliner add-in

nigelk2

New Member
Joined
Aug 26, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
There's an excel add-in called Rowliner which has exactly the functionality I'm after. Unfortunately it doesn't work for 64 bit machines. Can anyone advise if there's an up to date solution for this?

Thanks

 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
You can do something similar by adding the following code to your sheet:

VBA Code:
Private Sub Worksheet_SelectionChangeold2(ByVal target As Range)
If Application.CutCopyMode = False Then
On Error Resume Next
Application.Calculate
End If
End Sub

and then using conditional formatting on the desired range with this formula to highlight the selected row: =CELL("row")=ROW()
or this formula to highlight the selected row and column: =OR(CELL(“col”)=COLUMN(),CELL(“row”)=ROW())
 
Upvote 0

Forum statistics

Threads
1,221,501
Messages
6,160,177
Members
451,629
Latest member
MNexcelguy19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top