我希望防止点击受保护单元格中的Excel active-x单选按钮,除非取消单元格保护。 这该怎么做? 我正在使用的代码就是这个:
Private Sub OptionButton17_Click()
If OptionButton17.Value = True Then OptionButton18.Value = False
AuthorisationFlag = True
AuthorisationLevel AuthorisationFlag
End Sub
除非先前的条件已设置,否则我不希望点击OptionButton17
或OptionButton18
。
如果我锁定链接单元格,如果我锁定放置按钮的单元格,则无效。
有什么建议吗?