M mukesh kumar Joined Dec 29, 2018 Messages 1 Reaction score 0 Jan 2, 2019 #1 how to highlight active cell with font color?
Becky Webmistress Joined Mar 25, 2003 Messages 7,424 Reaction score 1,511 Jan 2, 2019 #3 mukesh kumar said: how to highlight active cell with font color? Click to expand... Do you mean that you want the font colour of the selected cell to have a different font colour?
mukesh kumar said: how to highlight active cell with font color? Click to expand... Do you mean that you want the font colour of the selected cell to have a different font colour?
A AmjiBhai Joined Feb 21, 2018 Messages 216 Reaction score 86 Apr 20, 2019 #4 Private Sub Worksheet_Activate() With Cells.Interior .Pattern = xlSolid .PatternColorIndex = xlAutomatic .Color = 95000 .TintAndShade = 0 .PatternTintAndShade = 0 End With End Sub Private Sub Worksheet_SelectionChange(ByVal Target As Range) With Selection.Interior .Pattern = xlSolid .PatternColorIndex = xlAutomatic .Color = 65535 .TintAndShade = 0 .PatternTintAndShade = 0 End With End Sub
Private Sub Worksheet_Activate() With Cells.Interior .Pattern = xlSolid .PatternColorIndex = xlAutomatic .Color = 95000 .TintAndShade = 0 .PatternTintAndShade = 0 End With End Sub Private Sub Worksheet_SelectionChange(ByVal Target As Range) With Selection.Interior .Pattern = xlSolid .PatternColorIndex = xlAutomatic .Color = 65535 .TintAndShade = 0 .PatternTintAndShade = 0 End With End Sub