我正在构建宏 whitch 通过我自己的结构从其他表生成空表。如何更改变量类型?
我的代码中的示例:
`%let vname = %sysfunc(getvarc(&dsid,%sysfunc(varnum(&dsid,varName))));
%let vtype = %sysfunc(getvarc(&dsid,%sysfunc(varnum(&dsid,varType))));
%let vformat = %sysfunc(getvarc(&dsid,%sysfunc(varnum(&dsid,varFormat))));
%if &vtype = C %then %do;
&vname=putc(&vname,&vformat);
%end;`
它不工作......任何其他想法如何改变 var 类型?