| Date: | Thu, 18 Mar 2004 10:14:20 -0500 |
| Reply-To: | Peter Flom <flom@NDRI.ORG> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Peter Flom <flom@NDRI.ORG> |
| Subject: | Re: If-then syntax |
|
| Content-Type: | text/plain; charset=US-ASCII |
try
if a < b then do;
c = 2;
d = 10;
end;
HTH
Peter
Peter L. Flom, PhD
Assistant Director, Statistics and Data Analysis Core
Center for Drug Use and HIV Research
National Development and Research Institutes
71 W. 23rd St
www.peterflom.com
New York, NY 10010
(212) 845-4485 (voice)
(917) 438-0894 (fax)
>>> Jean Balmisse <jean@REMOVE-THIS.STUDI.DK> 3/18/2004 7:52:48 AM >>>
Hello.
Is it possible to make a statment like this:
if a < b then
c = 2;
d = 10;
i.e. with several things to do..
Regards
Jean Balmisse
|