gpt4 book ai didi

excel - 禁用用户窗体上的按钮

转载 作者:行者123 更新时间:2023-12-04 21:13:21 25 4
gpt4 key购买 nike

如果我的电子表格中的某个单元格等于某个数字,我试图弄清楚如何禁用我的 userForm 中的按钮。我尝试了下面所述的代码,但它不起作用。

Private Sub UserForm_Initialize()
Label2 = Sheets("DATA").Range("AM2").Value
Label4 = Sheets("DATA").Range("AO2").Value
Label7 = Format(Sheets("DATA").Range("R8").Value, "Currency")

If Sheets("DATA").Range("AL10").Value = 10 Then
ActiveSheet.Shapes("CommandButton1").Select
UserFormact_Upgrade.CommandButton1.Enabled = False

Else


End If

End Sub

最佳答案

您的代码应该可以正常工作,因为您走在正确的道路上。

要对其进行测试,只需创建一个新表单并添加此代码,您就会看到它应该可以工作。也许您在 IF 子句中遇到问题?

此外,您不需要在禁用之前选择形状;立即禁用它。

Private Sub UserForm_Initialize()

CommandButton1.Enabled = False

End Sub

关于excel - 禁用用户窗体上的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5556070/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com