マクロ変数が存在するかどうかを返します。
| 種類: | DATAステップ関数 |
%global x;
%macro test;
%local y;
data null;
if symexist("x") then put "x EXISTS";
else put "x does not EXIST";
if symexist("y") then put "y EXISTS";
else put "y does not EXIST";
if symexist("z") then put "z EXISTS";
else put "z does not EXIST";
run;
%mend test;
%test;x EXISTS y EXISTS z does not EXIST