Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
You need to write a macro, or install a ready-made addon.
If by yourself, then you can do this:
https://trumpexcel.com/highlight-active-row-column...
Briefly - conditional formatting, select the range in which you need highlighting, create a new conditional formatting rule:
=OR(CELL("COL")=COLUMN(),CELL("ROW")=ROW())
Adjust the selection color there.
Then you create a handler
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Application.CutCopyMode = False Then
Application.Calculate
End If
End Sub
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question