|
Hello all,
I want to find out how to create a proc report dynamically Say if I have a
list of variables like this say for example in the Sashelp.Class
I want three Variables Age , Height , Name with Label and width and Other
Display Options like font and other things . Is it possible ????
Age as (Age of Subject width = 8 ) ,Height (height of Subject Width = 9 )
, Name (name of the subject)
%let Vname = %str(Age Height Name);
Proc Report data = Sashelp.Class NOwd ;
Column &vname ;
/*
------------>>>>>>>>>>>>>> *How to put Display statements with in do loop
to as variables list in Vname*<<<<<<<<<<<<<<<<<<<-------------------;
*/;
Run ;
is there a paper or discussions about this topic discussed earlier
thanks for your time
SL
|