|
Macros for SAS Application Developers
https://github.com/sasjs/core |
Returns variable type - Character (C) or Numeric (N) More...
Go to the source code of this file.
Usage:
data test;
length str $1. num 8.;
stop;
run;
%put %mf_getvartype(test,str);
%put %mf_getvartype(work.test,num);
| [in] | libds | Two part dataset (or view) reference. |
| [in] | var | the variable name to be checked |
Definition in file mf_getvartype.sas.