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 (April 2006, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 19 Apr 2006 11:52:06 -0400
Reply-To:   Gerhard Hellriegel <ghellrieg@T-ONLINE.DE>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Gerhard Hellriegel <ghellrieg@T-ONLINE.DE>
Subject:   Re: What is difference in the two input statement ???

...by the way, another thing like that: divide by zero errors. If you have something like a=x/y with no influence to the input data, you should always check y

if y not in (0 .) then do; a=x/y; end; else do; a=.; /* or whatever */ end;


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