如果ComboBox3.Value喜欢“ Chard ”而ComboBox4.Value喜欢“ Days ”那么* texbox4.Value
这是我的代码的第一部分,但我被卡住了。我希望它读取组合框3中的值,然后读取组合框4中的值,然后读取文本框4中的值,并将其乘以存储在工作簿中的工作表上的值。
我该怎么做?
由于
答案 0 :(得分:0)
你已经非常接近了。
if combox3.value like "Chard" And Combobox4.value like "Days" then
textbox4.value = textbox4.value * range("A1") ' or whatever range you choose.
end if
答案 1 :(得分:0)
这是我到目前为止所得到的:
如果是combox3.Value喜欢" Chard"和ComboBox4.Value喜欢" Days"和ComboBox9.Value喜欢"周一,周二,周三,周四,周五和#34;然后 TextBox4.Value = TextBox4.Value *范围(" B2")'或者你选择的任何范围。 万一 结束子
我现在得到运行时错误424,需要对象。我似乎无法让文本框4乘以表3单元格B2中的值?