Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
マクロを使用してデータセットに変数を作成したいと考えています。変数名にスペースが含まれています。通常、SAS では名前をアポストロフィで囲む必要があります: 'var_name'n 。マクロでは、%(str) を使用してアポストロフィをマスクしようとしました。
例えば:
%macro test(varname); %str(')&varname.%str('n)="" %mend;
しかし、これはうまくいかないようです。