patricia75
New Member
- Joined
- Jul 18, 2011
- Messages
- 6
Hi, How do I get my macro to check a checkbox after certain tasks were done ?? Thanks
Sub CheckChk()
Dim myBox As OLEObject
For Each myBox In ActiveSheet.OLEObjects
If TypeName(myBox.Object) = "CheckBox" Then
If myBox.Object Then
'
'your code goes here
'
End If
Next myBox
End Sub