Sub Macro_On_Off_Click()
With ActiveSheet.Shapes(Application.Caller)
If .ControlFormat = xlOn Then
Box_Code_ON
Else
Box_Code_OFF
End If
End With
End Sub
Sub Box_Code_ON()
MsgBox "Format code for box runs when clicked ON"
End Sub
Sub Box_Code_OFF()
MsgBox "Format code for box runs when clicked OFF"
End Sub