Hi,

I am looking for some code which will highlight (not coloring) the entire row when the mouse hovers above a cell - NOT by clicking only by hovering.

A friend of mine sent me the following code which highlights the entire row by clicking a a cell.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Target.entirerow.select
    Target.activate
End Sub

Is there something similar for mouse hovering ?

A long time ago I read something called Classes and ClassEventHandler.
(It was referred to MS Word and I could not adopt it for Excel.

Could this be for any help in my case or has anybody a better solution ?

Thanks, Elm