Prev: Creating one report with columns based on different subsets of
Next: how to FTP a pure XLS file to MAINFRAME and do PROC IMPORT there?
From: SAS_learner on 30 Dec 2009 18:38 Hello all , I am using following program in one my graph programs. ( I inherted that program from somebody else) some how at the point of %system (3,3,3) I am getting error. Is this user written macro or SAS supplied macro ?? I am getting error at %label too data anno1; length text $ *14*; %*system*(*3*,*3*,*3*); if "&run_ib" = "Y" then do; %*label*(*10*,*17*," n=",black, *0*, *0*, *2.25*, simplex,*6*); %*label*(*55*,*19.5*,"Visit",black, *0*, *0*, *2.5*, duplex,*6*); end; else do; %*label*(*4*,*21*,"Treatment X n=",black, *0*, *0*, *2.25*, simplex,*6*); %*label*(*4*,*17.5*,"Treatment Y n=",black, *0*, *0*, *2.25*, simplex,*6*); %if &type.=*4* %then %*label*(*50*,*23.5*,"Visit",black, *0*, *0*, *2.5*, duplex,*6*); %else %*label*(*55*,*23.5*,"Visit",black, *0*, *0*, *2.5*, duplex,*6*); ; end; run; *%*system(3,3,3); ERROR 180-322: Statement is not valid or it is used out of proper order. |