Assign this macro to your check box 37
![]()
Sub CheckUncheck() Dim ws As Worksheet: Set ws = ActiveSheet Dim ctrl As Shape Dim lChkBox As Integer lChkBox = IIf(ws.Shapes("Check Box 37").ControlFormat.Value = 1, 1, -4146) For Each ctrl In ws.Shapes If ctrl.Name <> "Check Box 37" Then ctrl.ControlFormat.Value = lChkBox End If Next ctrl End Sub
Bookmarks