Date: Tue, 7 Nov 2006 09:35:18 -0800
Reply-To: "Mogens A. Krogh" <MKROGH@DSR.KVL.DK>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Mogens A. Krogh" <MKROGH@DSR.KVL.DK>
Organization: http://groups.google.com
Subject: Re: round up to ten thousand
In-Reply-To: <1162918767.214267.11420@h54g2000cwb.googlegroups.com>
Content-Type: text/plain; charset="us-ascii"
Dear Dirk,
I think you could use the ROUNDZ function to do this.
data _null_;
test=5365;
rounded=roundz(test,10000);
put rounded=;
run;
Regards
Mogens A. Krogh
PhD-student, DVM
www.kvl.dk
|