选中复选框时,无法启用组合框或单元格并调用另一个模块

时间:2019-04-08 12:20:57

标签: excel vba

我正在尝试编写一个VBA代码,其中有两个组合框或一个单元格(带有下拉列表)和一个复选框。因此,我需要禁用另一个单元格或组合框,并在选中复选框时调用另一个模块或过程。

当前,我尝试使用下面提到的代码,但它给了我运行时错误'424':必需对象。

 ' When checkbox is checked   
    If CheckBox1.Value = True Then
    Call Module_1
    Call graph_2
    Else: 
    ' Here i want to Disable the cell or combobox. I have no specific code of the same:
    Call graph
    End If
    End Sub

我是VBA的新手,所以如果我的方法正确,我没有任何具体线索。

任何帮助或建议都会受到赞赏。

谢谢!

0 个答案:

没有答案