Shortcut in Excel

J

Jake Rich

Is there a keyboard shortcut in Excel that will change a highlighted row's
color? I know how to highlight a row (shift+space), but after that I don't
know the shortcut to change its color.

Thanks!
 
B

Bernie Deitrick

Jake,

There is no built-in shortcut: you would need to write a macro and
assign it to a shortcut to get that functionality.

HTH,
Bernie
MS Excel MVP
 
D

Dave Smith

This macro will select the current row(s) and allow you to set a color.

Sub EntireRow_ChangeColor()
selection.EntireRow.Select
Application.Dialogs(xlDialogPatterns).Show
End Sub

HTH
-Dave Smith
 
J

Jake Rich

Thank you Dave!

Dave Smith said:
This macro will select the current row(s) and allow you to set a color.

Sub EntireRow_ChangeColor()
selection.EntireRow.Select
Application.Dialogs(xlDialogPatterns).Show
End Sub

HTH
-Dave Smith
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top