我目前正在尝试将一些代码实现到我的Excel中,因此当用户选中一个复选框时,其他复选框将被取消选中。这是我的以下代码:
Sub CheckBox77_Click()
If CheckBox77.Value = True Then
CheckBox78.Value = False
End If
End Sub
Sub CheckBox78_Click()
If CheckBox78.Value = True Then
CheckBox77.Value = False
End If
End Sub
当我测试时,我收到一条错误消息:
运行时错误' 424':对象必需。
我该如何解决这个问题?谢谢!
答案 0 :(得分:0)
好的,您想将这些方法放在" Module1" 中,您应该使用如下:
If Sheets("sheetname").CheckBox78.Value = True Then
Sheets("sheetname").CheckBox77.Value = False
End If