LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (June 2009, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 15 Jun 2009 03:21:40 -0700
Reply-To:     naga <nagabiochem@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         naga <nagabiochem@GMAIL.COM>
Organization: http://groups.google.com
Subject:      i want grand total in proc freq ;
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset=ISO-8859-1

hi sas experts, i want grand total in this program data medi ; input sid visit dos $ nopts; datalines; 100 1 0.05mg 20 101 1 0.05mg 20 102 1 0.05mg 20 103 1 0.05mg 20 100 2 0.10mg 25 101 2 0.10mg 24 102 2 0.10mg 25 103 2 0.10mg 29 100 3 0.15mg 30 101 3 0.15mg 40 102 3 0.15mg 44 103 3 0.15mg 55 ; proc freq data=medi; table dos visit/nocum; weight nopts ; run;


Back to: Top of message | Previous page | Main SAS-L page