/ Published in: SAS
URL: http://studysas.blogspot.com/2010/04/call-execute-easy-way-to-print-or-sort.html
When printing multiple files, or sorting multiple datasets, the traditional method is to write multiple steps as below.
Proc print data=libref.ae; var all; run; Proc print data=libref.conmed; var all; run; Proc print data=libref.demog; var all; run; Proc print data=libref.lab; var all; run; Proc print data=libref.medhist; var all; run; If you are like me who likes to simplify the traditional SAS code here is the tip. CALL EXECUTE comes to rescue here.
Expand |
Embed | Plain Text
http://studysas.blogspot.com/2010/04/call-execute-easy-way-to-print-or-sort.html
You need to login to post a comment.
