Answers for "Keeping visual highlight of selected cells when Excel loses focus"

VBA
0

Keeping visual highlight of selected cells when Excel loses focus

Sub HighlightCellYellow()
'
' HighlightCell Macro
'Keyboard Shortcut: Ctrl+Shift+U
'
    With Selection
    If .Interior.ColorIndex = xlNone Then
        .Interior.ColorIndex = 6
    Else
        .Interior.ColorIndex = xlNone
    End If
End With
End Sub
Posted by: Guest on September-28-2021

Code answers related to "Keeping visual highlight of selected cells when Excel loses focus"

Code answers related to "VBA"

Browse Popular Code Answers by Language