By using shortcut.booksticle.com you agree to our cookie policy, We and our partners operate globally and use cookies, for multiple purposes

73 Shortcuts for Excel



Shortcut 34 - Ctrl+Shift+Y - Yellow Highlight a Row


Here's a macro on how to highlight a row with the color yellow

Sub YellowRow()

' YellowRow Macro
'
' Keyboard Shortcut: Ctrl+Shift+Y
'
    Rows(ActiveCell.Row).Select
    If Selection.Interior.Pattern = xlNone Then
        With Selection.Interior
            .Pattern = xlSolid
            .PatternColorIndex = xlAutomatic
            .Color = 65535
            .TintAndShade = 0
            .PatternTintAndShade = 0
        End With
        
    Else
        With Selection.Interior
            .Pattern = xlNone
            .TintAndShade = 0
            .PatternTintAndShade = 0
        End With
    End If
    
End Sub

   ←Ctrl+Shift+G - Google a Cell | →Ctrl+Shift+U/D- Move Cell Up or Down | Table of Contents | Send us your feedback | Random | © 2025 All Rights Reserved | Edit