See http://www.sascommunity.org/wiki/PROC_MEANS_-_Improve_on_the_default BrentFulton wrote: Hi, I would like to write SAS code so output from procedures is automatically put into a table. For example, if I run proc means data=data1 mean N NMISS on 15 variables, I would like the output to go into a table with four columns (variable name, mean, N, NMISS) and 15 rows (one for each variable). Is that possible? I can do this in Stata, because all output is stored in scalars and matrices, which can be accessed and put into a matrix (i.e., table) that I create. Thanks, Brent Fulton UC Berkeley
... View more