| Date: | Mon, 10 Sep 2007 06:23:10 -0000 |
| Reply-To: | murugesh <iammurugesh@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | murugesh <iammurugesh@GMAIL.COM> |
| Organization: | http://groups.google.com |
| Subject: | How to Create SAVINGS Macros in Autocall library |
|
| Content-Type: | text/plain; charset="iso-8859-1" |
|---|
Hi,
i want step by step coding of Storing macros in Autocalllibrary.
and how to call the macro in new program or exising program.
for example this macro i want to store in autocalllibrary
%macro sorting(datas=,var1=,var2=);
proc sort data=&datas;
by &var1 &var2;
run;
%mend sorting;
Can u help me!
Send easy & Difficult example also.
Regards,
Murugesh P
|