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 (September 2010, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 21 Sep 2010 14:05:52 -0400
Reply-To:     Jeff <zhujp98@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Jeff <zhujp98@GMAIL.COM>
Subject:      what is wrong with this code?
Content-Type: text/plain; charset=ISO-8859-1

%macro m; data _null_; set param.&desc.&con.; if variabe="&con." then do; call symput("cutoff", probt); end; run;

%put &cutoff; %if "&cutoff"<=0.05 %then %do; data sigparam.&desc.&con.; set param.&desc.&con; %end; run; %mend;

WARNING: Apparent symbolic reference CUTOFF not resolved. &cutoff WARNING: Apparent symbolic reference CUTOFF not resolved.

NOTE: There were 18 observations read from the data set PARAM.CONTINUEMPRLEVELC1I7. NOTE: The data set SIGPARAM.CONTINUEMPRLEVELC1I7 has 18 observations and 9 variables. NOTE: Compressing data set SIGPARAM.CONTINUEMPRLEVELC1I7 decreased size by 0.00 percent. Compressed is 1 pages; un-compressed would require 1 pages. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.01 seconds


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