Help writing macros to toggle through various formatting (font color, cell fill color, number format, decimals, borders)

holcomjh

New Member
Joined
May 31, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I'm trying to write macros that will allow me to use a keyboard shortcut to quickly cycle through various options. Example, if I want to change the font colors in the "Start" column below, pressing the shortcut CTRL + SHIFT + C consecutively would change the fonts to black, then to blue, then to green, then to red, and cycle back to black (and continue to cycle each time I used the shortcut). Thank you in advance for any help.

Example toggle.png

Following the same logic, I'd like to use different shortcuts for the following formatting toggles:
Desired Toggles.png
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Change as required.
Code:
Sub Change_Range_Color()
    Select Case Range("A2:A10").Font.Color
        Case RGB(0, 0, 255)
            Range("A2:A10").Font.Color = RGB(127, 255, 0)
        Case RGB(127, 255, 0)
            Range("A2:A10").Font.Color = RGB(255, 255, 0)
        Case RGB(255, 255, 0)
            Range("A2:A10").Font.Color = RGB(255, 0, 0)
        Case RGB(255, 0, 0)
            Range("A2:A10").Font.Color = RGB(127, 255, 212)
        Case RGB(127, 255, 212)
            Range("A2:A10").Font.Color = RGB(255, 228, 196)
        Case RGB(255, 228, 196)
            Range("A2:A10").Font.Color = RGB(138, 43, 226)
        Case RGB(138, 43, 226)
            Range("A2:A10").Font.Color = RGB(255, 20, 147)
        Case Else
            Range("A2:A10").Font.Color = RGB(0, 0, 255)
    End Select
End Sub
 
Upvote 0

Forum statistics

Threads
1,225,749
Messages
6,186,802
Members
453,373
Latest member
Ereha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top