Date: Mon, 3 Oct 2011 09:05:44 -0400
Reply-To: Santosh Nazare <santosh.nazare@MAINE.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Santosh Nazare <santosh.nazare@MAINE.GOV>
Subject: Re: need help in report
you can use PROC report
For example :
proc report data=one nowindows nocenter headline missing ;
columns agegroup enrollment nationality;
define agegroup/ group "age group";
define enrollment/ group "enrollment";
define nationality/ across "nationality" center;
run;
for more information refer to this paper :
http://www.lexjansen.com/mwsug/2010/how/MWSUG-2010-141.pdf
|