September 2019
Beginner to intermediate
346 pages
7h 35m
English
There are many built-in SAS macro functions available for a user. Some of them are as follows:
%PUT This version is &SYSVER;%PUT Today is &SYSDAY;%PUT My User ID is &SYSUSERID;%PUT Current Time is &SYSTIME;%PUT My System is &SYSSCPL;%PUT My Operating System is &SYSSCP;
The preceding macro functions resolve like so:
73 %PUT This version is &SYSVER; This version is 9.474 %PUT Today is &SYSDAY; Today is Sunday75 %PUT My User ID is &SYSUSERID; My User ID is sasdemo76 %PUT Current Time is &SYSTIME; Current Time is 01:5877 %PUT My System is &SYSSCPL; My System is Linux78 %PUT My Operating System is &SYSSCP; My Operating System is LIN X64
You can combine the use of automatic macro variables with functions that are available ...
Read now
Unlock full access