Stepping through a series of check boxes

Westbury

Board Regular
Joined
Jun 7, 2009
Messages
139
I've inserted a Form control check box in sheet "Start sheet". This check box is made up of 9 rows & 2 columns ( cells K26:L34) with the names of continents [column K] so that a user can select one or more [tick boxes in column L]. I would like to use vba to step through these check boxes and for each one to perform a task if the value is true. The task is to copy data from another sheet for processing--the easy bit. With my limited knowledge of VBA I don't know how to interrogate the check boxes using vba; can anyone offer some advice please?

Thanks
Geoff
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Here is a simple way to loop through the checkboxes on a sheet to identify which ones are ticked
- run the code and the message box lists all ticked form control checkboxes on the active sheet

Code:
Sub CheckboxLoop()
    Dim box As Shape, msg As String
    For Each box In ActiveSheet.Shapes
        If box.Type = msoFormControl And box.FormControlType = xlCheckBox And box.ControlFormat.Value = xlOn Then
            msg = msg & vbCr & box.Name & vbTab & " ticked"
        End If
    Next box
    MsgBox msg
End Sub

What we now need to do is to tell VBA what to do when a particular checkbox is ticked

Consider using Select Case to tell VBA what to do next. Consider renaming the checkboxes to make the code read easier and then your code will look something like this

Code:
Sub CheckboxLoop()
    Dim box As Shape 
    For Each box In ActiveSheet.Shapes
        If box.Type = msoFormControl And box.FormControlType = xlCheckBox And box.ControlFormat.Value = xlOn Then
            Select Case box.Name
                Case "continent1"
                    'do something
                Case "continent2"
                    'do something
                'etc
            End Select
        End If
    Next box
End Sub
 
Upvote 0
I've tried using the first sub that you replied with but I'm getting a warning

"Object doesn't support this property or method" What's causing this?
 
Upvote 0
I am flumoxed because it works for me

What are the names of your checkboxes?
Which version of Excel are you using?
 
Upvote 0
Excel as part of Home Office 2013.

the checkboxes are in a tabular format with 2 columns, continent name on the left tick box on the right. There are no properties with the check boxes if I right click on them; should there be?
 
Upvote 0
If you right-click on a checkbox it's name appears in the name box (above cell A1)

I would expect "Checkbox 1" etc
(ie with a space between the word Checkbox and the number)
 
Upvote 0
Thanks, found them but then decided to change to ActiveX check boxes.

I now have this code for checking if at least one box is ticked :-

Dim iNum As Long
Dim iCheck As Long


For iNum = 1 To 9


If ActiveSheet.OLEObjects("CheckBox" & iNum).Object.value = "True" Then

iCheck = iCheck + 1
End If

Next iNum


If iCheck = 0 Then

MsgBox ("At least one continent must be selected" & vbCrLf & "from the list on the Start sheet")

Exit Sub

End If



and to copy the selected continent data from a ws with named ranges

Dim LastRow As Long
Sheets("Start sheet").Select


Dim xNum As Long


xNum = 1


If ActiveSheet.OLEObjects("CheckBox" & xNum).Object.value = "True" Then
Range("tbl_Africa").Copy
Worksheets("Destination options").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues
End If

'find first empty row in col A
xNum = xNum + 1


If ActiveSheet.OLEObjects("CheckBox" & xNum).Object.value = "True" Then
Range("tbl_Asia").Copy
Worksheets("Destination options").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues

End If

There are 9 steps in my code but have just posted 2 steps here for anyone to get ideas from. I'm sure this isn't very elegant but it works for a VBA novice!
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,199
Members
449,072
Latest member
DW Draft

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