No VBA, você não precisa repetir If
, basta usar os conectores ( and
, or
, etc):
If Range("I69") > 0 and Range("I70") > 0 Then
DoSomeCalc's
End if
Eu tenho o seguinte código que não funciona:
If Range("I69") > 0 and If Range("I70") > 0 Then
DoSomeCalc's
end if
como posso fazer isso funcionar corretamente?
Tags microsoft-excel vba