我有以下不起作用的代码:
If Range("I69") > 0 and If Range("I70") > 0 Then
DoSomeCalc's
end if
我怎样才能使此功能正常运作?
答案1
在 VBA 中,您不必重复If
,只需使用连接器(and
,or
等):
If Range("I69") > 0 and Range("I70") > 0 Then
DoSomeCalc's
End if
我有以下不起作用的代码:
If Range("I69") > 0 and If Range("I70") > 0 Then
DoSomeCalc's
end if
我怎样才能使此功能正常运作?
在 VBA 中,您不必重复If
,只需使用连接器(and
,or
等):
If Range("I69") > 0 and Range("I70") > 0 Then
DoSomeCalc's
End if