Excel 关于VBA中IF多条件语句的用法,虚心求教

2024-11-30 20:08:44
推荐回答(1个)
回答1:

与:and
或:or
非:not
if a=1 and b=1 then ......(如果a=1 并且b=1,则......)
if a=1 or b=1 then .....(如果a=1或者b=1,则.........)
if not a=1 then .......(如果a不是等于1,则.......,当然也可改为a<>1,举例而已)