VBA: I cannot find the "correct" Backcolor setting for a worksheet checkbox

ez08mba

Board Regular
Joined
Nov 1, 2011
Messages
224
Office Version
  1. 2016
Platform
  1. Windows
Through intellisense, I cannot find the backcolor fill setting for a checkbox shape within an Excel spreadsheet. I've used the "With" statement to make sure I'm selecting the one-and-only checkbox on the spreadsheet as well as the entire workbook. I'm not sure why this doesn't work?

Code:
    With wsTemplate.Shapes(1)
        .Fill.BackColor.RGB = RGB(170, 170, 170)

        MsgBox .Name
    End With
 
Last edited:

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Use ForeColor, rather than BackColor
 
Upvote 0
Use ForeColor, rather than BackColor

Hi Fluff!

That didn't work but I have tried that before. I'm sure you know, but this is a checkbox added from the controls under the Developer tab and not on a form. It shows as =EMBED(Form.Checkbox.1) when clicked on. I can't even get to the control properties manually. This is the first I've tried to interact with a control not located on a form, so I have no clue here. :)

Thanks!
 
Upvote 0
The problem is you are using an ActiveX checkbox. Try deleting it & replacing it with a Form Control checkbox instead
 
Upvote 0
The problem is you are using an ActiveX checkbox. Try deleting it & replacing it with a Form Control checkbox instead

I did change it to a form control. I hadn't realized, but do remember, selecting the ActiveX. So I replaced it with the "Form control" checkbox as you suggested. It still won't change the color. I can select the control, pull the name, resize it but I cannot change the color. I don't receive an error, it simply won't change the color. There has to be something stupid that I'm missing.

Code:
        With wsTemplate.Shapes(1)
            .Select
            Cells(4, 3) = .Name
            .Height = 20
            .Width = 200
            .Fill.BackColor.RGB = RGB(0, 0, 255)
            .Fill.ForeColor.RGB = RGB(0, 0, 255)
        End Wit
 
Upvote 0
I did more searching and discovered this and it worked. However, ".CheckBoxes" didn't come up as a method option with my wsTemplate reference. I took it as hoping it would work and it did. This still doesn't explain to me though why the other way doesn't work when I can do all the same things except change the color?

Code:
        With wsTemplate.CheckBoxes(1)
            .Select
            Cells(4, 3) = .Name
            .Height = 20
            .Width = 200
            .Interior.ColorIndex = 45
'            .Fill.BackColor.RGB = RGB(0, 0, 255)
'            .Fill.ForeColor.RGB = RGB(0, 0, 255)
        End With
 
Upvote 0
One more thing that is interesting... If I record a macro expanding the shape of the CheckBox and change the color, the macro "does not" record changing the background color. There must be a glitch somewhere.

Code:
    ActiveSheet.Shapes("Check Box 1").ScaleWidth 1.587628866, msoFalse, _
        msoScaleFromTopLeft
    ActiveSheet.Shapes("Check Box 1").ScaleHeight 2.0322580645, msoFalse, _
        msoScaleFromTopLeft
 
Upvote 0
Glad you got it sorted.
Not sure why the code from post#5 doesn't work for you if it gives the right name & changes the size, as it works for me.
 
Upvote 0

Forum statistics

Threads
1,214,396
Messages
6,119,268
Members
448,881
Latest member
Faxgirl

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