LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (October 2007, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 18 Oct 2007 04:57:25 -0700
Reply-To:   Hari <excel_hari@YAHOO.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Hari <excel_hari@YAHOO.COM>
Organization:   http://groups.google.com
Subject:   Is WHERE ALSO documented
Comments:   To: sas-l@uga.edu
Content-Type:   text/plain; charset="iso-8859-1"

Hi,

I came across usage of the WHERE ALSO in online learning.

I understand now that it performs same as "WHERE SAME AND ..." but not able to see the same documented in help? I checked up through the Where statement portion in SAS Language Reference: Dictionary.

%macro attend(crs,start=01jan2001,stop=31dec2001); %let start=%upcase(&start); %let stop=%upcase(&stop); proc freq data=sasuser.all; where begin_date between "&start"d and "&stop"d; table location / nocum; title "Enrollment from &start to &stop"; %if &crs= %then %do; title2 "for all Courses"; %end; %else %do; title2 "for Course &crs only"; where also course_code="&crs"; %end; run; %mend;

hp


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