How do you replicate checkboxes with Format Control applied?

timmy2

New Member
Joined
Jul 17, 2017
Messages
15
In cell E2 I've inserted a checkbox. Then I applied a Format Control to it so that TRUE/FALSE will appear next to it in F2.

Now I want to replicate that checkbox down the column with each checkbox displaying TRUE or FALSE to the right of it.

I can replicate the checkboxes but checkmarking one box checks them all and switches TRUE/FALSE only in F2.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi Timmy

Are you copy and pasting from the original checkbox and then subsequent check boxes? If so, they will inherit the format control as well, meaning they would all possess the same cell link. You'll need to update the cell link for each one to point towards the desired cell.
 
Upvote 0
perhaps this code (from the forums a long, long time ago) will be of use
Code:
Private Sub Insert_Checkboxes()
     Dim myCell As Range, myRng As Range
     Dim CBX As CheckBox

With ActiveSheet
    'delete ALL existing checkboxes from sheet, links are NOT cleared.
    .CheckBoxes.Delete  '<~~~~~ comment out to NOT delete existing checkboxes
    'Exit Sub           '<~~~~~ uncomment when deleting checkboxes only.
    Set myRng = .Range("E2:E20")    '<~~~~~ enter the range to have checkboxes
End With
Application.ScreenUpdating = False
    For Each myCell In myRng.Cells
        With myCell
            Set CBX = .Parent.CheckBoxes.Add _
                        (Top:=.Top, Left:=.Left, _
                         Width:=.Width, Height:=.Height) 'click area same size as cell
            CBX.Name = "CBX_" & .Address(0, 0)
            CBX.Caption = "Label goes here"         'whatever you want, "" for none
            CBX.Value = xlOff                       'initial value unchecked
            CBX.LinkedCell = .Offset(0, 1).Address  '<~~~~~ offset to linked cell
        End With
    Next myCell
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Hi Timmy

Are you copy and pasting from the original checkbox and then subsequent check boxes? If so, they will inherit the format control as well, meaning they would all possess the same cell link. You'll need to update the cell link for each one to point towards the desired cell.

Thank you for replying, Sam_ExcelVault. I did indeed try copying/pasting but as you acknowledge, you must then manually update the cell link for each one, a time-consuming process that inspired my original post.
 
Upvote 0
THANK YOU, NoSparks! That does the trick. Your help is greatly appreciated.

When it's open in the VBA editor I can run it. Would you happen to know why the resulting macro doesn't show up in the list of macros available (ALT+F8)? I inserted it as a module and saved the sheet as Excel Macro-Enabled Workbook.
 
Upvote 0
If you want it to show in the macro dialogue, remove the word Private.

I don't really think you want to do that, as-is it removes all checkboxes from the sheet and is hard coded as to where checkboxes are desired.
 
Upvote 0
Your reasoning is excellent. I was unaware of the drawbacks. Still learning VBA and macros. Thank you again.
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,053
Latest member
Mesh

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