标签: sas datastep
我需要写逻辑
If y=1 then y=1; else y=y+x and z=5;
一切正常但声明的第二部分(和x = 5)不起作用。
答案 0 :(得分:3)
听起来你想这样做:
if y^=1 then do; y=y+x; z=5; end;