Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a line of activex checkmark control boxes. How do I total the number
of boxes that are checked? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi dayoungblood
Try this Sub test2() Dim i As Long i = 0 For Each obj In ActiveSheet.OLEObjects If TypeOf obj.Object Is MSForms.CheckBox Then If obj.Object.Value = True Then i = i + 1 End If Next MsgBox i End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "dayoungblood" wrote in message ... I have a line of activex checkmark control boxes. How do I total the number of boxes that are checked? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Oops you posted in functions
Or use a linked cell in the properties of each checkbox And count the Tru's =COUNTIF(A40:Z40,"True") -- Regards Ron de Bruin http://www.rondebruin.nl "dayoungblood" wrote in message ... I have a line of activex checkmark control boxes. How do I total the number of boxes that are checked? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Bubbles with multiple series | Charts and Charting in Excel | |||
How do I tally checked check boxes in an Excel spreadsheet? | Excel Worksheet Functions | |||
I want to be able to count the number of checked boxes in a form? | Excel Worksheet Functions | |||
Click Boxes for each series in a graph | Charts and Charting in Excel | |||
Quasi Transpose / Stacking Columns | Excel Worksheet Functions |