我在 Sheet1(模块 1)上有一个单选按钮,其当前代码是:
Sub Sec1No
MsgBox "If There Are No IT Costs, Disregard Sheet2.", , "From Admin"
End Sub
然后我在 Sheet2(模块 2)上有一个不同的单选按钮。
当用户单击 Sheet1 上的第一个单选按钮时,当他们转到 Sheet2 时,该按钮是否已经被单击了?
感谢您的帮助!
答案1
您可以通过名称调用第二个单选按钮,就像调用任何其他子程序一样:
Sub Sec1No
MsgBox "If There Are No IT Costs, Disregard Sheet2.", , "From Admin"
Button2_Click 'replace this with the name of the button on Sheet 2
End Sub
当单击按钮 1 时,将运行按钮 2 的代码。