I keep getting an error when I run this in Excel. Can anyone see the problem?
Option VBASupport 1
Sub ClearChecks_Q()
Dim CB As CheckBox
For Each CB In ActiveSheet.CheckBoxes
If Not Intersect(CB.TopLeftCell, Range("V6:X1077")) Is Nothing Then
CB.Value = xlOff
End If
Next CB
End Sub