Allow use of an Environment variable as source of default value for parameter being checked by %PARMV() macro. Example: 1 options set=STUDY=XYX101 ; 2 %let study=; 3 %parmv(study,_envar=STUDY); 4 %put &=study; STUDY=XYX101 https://github.com/sasutils/macros/blob/e8ab56b7b747f82dc88afa47affbdaf0e77702dc/parmv.sas#L1
Allow use of an Environment variable as source of default value for parameter being checked by %PARMV() macro.
Example:
1 options set=STUDY=XYX101 ;
2 %let study=;
3 %parmv(study,_envar=STUDY);
4 %put &=study;
STUDY=XYX101
macros/parmv.sas
Line 1 in e8ab56b