| Date: | Fri, 1 Feb 2002 11:37:33 +0100 |
| Reply-To: | Jim Groeneveld <J.Groeneveld@ITGROUPS.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Jim Groeneveld <J.Groeneveld@ITGROUPS.COM> |
| Subject: | Re: ABORT statement |
|
| Content-Type: | text/plain |
|---|
Dear Dan,
Try ABORT ABEND or ABORT RETURN instead of ABORT.
Regards - Jim.
--
Y. (Jim) Groeneveld, MSc IMRO TRAMARKO tel. +31 412 407 070
senior statistician, P.O. Box 1 fax. +31 412 407 080
senior data manager 5350 AA BERGHEM IMRO TRAMARKO: a CRO
J.Groeneveld@ITGroups.com the Netherlands in clinical research
My computer has no idea what I am doing; sometimes the reverse also applies.
Notice of confidentiality: this e-mail may contain confidential information
intended for the addressed recipient only.
If you have received this e-mail in error please delete this e-mail and
please notify the sender so that proper delivery
can be arranged.
> -----Original Message-----
> From: Dan Lu [SMTP:z.lu@ATT.NET]
> Sent: Thursday, January 31, 2002 8:02 PM
> To: SAS-L@LISTSERV.UGA.EDU
> Subject: ABORT statement
>
> The abort statement does not stop the rest of the program. Why?
> &var1,&var2,&varA and &varB are from previous call symput statements.
>
> data dsn2;
> set dsn1;
> if (&var1 ne &varA) and (&var2 ne &varB) then abort;
> run;
>
> more steps.
>
> Thanks!
|