This post was kindly contributed by The SAS Training Post - go there to comment and to read the full post. |
The simple PRINT macro below prints a selected dataset: %macro print(data=&syslast,obs=5); proc print data=&data(obs=&obs); title "%upcase(&data)"; run; %mend print; Suppose you want to print every dataset in the library. Would you enjoy typing a macro call for every dataset in the library? Only if you enjoy coding in the slow […]
This post was kindly contributed by The SAS Training Post - go there to comment and to read the full post. |