Date: Fri, 24 May 1996 11:06:18 -0700
Reply-To: Rob Carscadden <carscadd@PPS.DUKE.EDU>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: Rob Carscadden <carscadd@PPS.DUKE.EDU>
Organization: Duke University, Durham, NC, USA
Subject: Strange Error, please help
The following error is very confusing to me, any hints. I've checked and
checked, but I don't see a spelling error. Am I just blind or what? I
sort the data by this makeuni variable and the I want to output the first
observation of each. Am I just clueless, dumb, or is my SAS acting up.
If there is bonehead mistake, please feel free to mock me.
Thanks in Advance,
Rob
***************************************************
1806 proc sort data = sims.admerge1; by makeuni;
1807 run;
NOTE: Input data set is already sorted, no sorting done.
NOTE: PROCEDURE SORT used:
real time 0.476 seconds
cpu time 0.037 seconds
1808
1809 data temp;
1810 set sims.admerge1;
1811 by makeuni;
1812 if first.makeuni then output;
ERROR: BY variables are not properly sorted on data set SIMS.ADMERGE1.
|