mrinal saha
Board Regular
- Joined
- Jan 20, 2009
- Messages
- 229
Hi
I have 4 checkboxes in sheet1. want to use a loop in workbook open event to uncheck the boxes if any. Well using the below code, but seems nothing happening.
For Each o In Sheets("Summary").OLEObjects
If TypeName(bject) = "checkbox" Then
If o = True Then
o = False
End If
End If
Next o
thankssss,
Mrinal
I have 4 checkboxes in sheet1. want to use a loop in workbook open event to uncheck the boxes if any. Well using the below code, but seems nothing happening.
For Each o In Sheets("Summary").OLEObjects
If TypeName(bject) = "checkbox" Then
If o = True Then
o = False
End If
End If
Next o
thankssss,
Mrinal