From: Al on 15 Jun 2010 12:22 Dear all: How to delete a macro after it is assigned.. without closing the SAS session Thanks in advance Al
From: Ya on 15 Jun 2010 12:26 On Jun 15, 9:22 am, Al <ali6...(a)gmail.com> wrote: > Dear all: > How to delete a macro after it is assigned.. without closing the SAS > session > > Thanks in advance > Al You can use %symdel: 17 %let a=2143; 18 19 %put &a; 2143 20 21 %symdel a; 22 23 %put &a; WARNING: Apparent symbolic reference A not resolved. &a HTH Ya
From: RolandRB on 15 Jun 2010 12:29 On Jun 15, 6:22 pm, Al <ali6...(a)gmail.com> wrote: > Dear all: > How to delete a macro after it is assigned.. without closing the SAS > session > > Thanks in advance > Al %macro test; %mend test; proc catalog catalog=work.sasmacr et=macro; delete test; run; quit;
|
Pages: 1 Prev: Select unique variable1, variable2, variable3 Next: Help with Proc NLIN |