Date: Fri, 15 Aug 2008 11:29:53 -0400
Reply-To: msz03@albany.edu
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Mike Zdeb <msz03@ALBANY.EDU>
Subject: Re: informat for pounds sterling
Content-Type: text/plain;charset=iso-8859-1
hi ... if you have V9.2, there is an INFORMAT ...
data god_save_the_queen;
input (x y) (: NLMNLGBP.);
z = x + y;
format x y z NLMNLGBP.2;
datalines;
£20.00 £145.87
run;
proc print data=god_save_the_queen noobs;
run;
x y z
£20.00 £145.87 £165.87
--
Mike Zdeb
U@Albany School of Public Health
One University Place
Rensselaer, New York 12144-3456
P/518-402-6479 F/630-604-1475
> Hi guys,
> Anyone know of an informat for pounds sterling or anyone able to
> define one?!
> Current like £20.00 £145.87 all positive values, all prefixed with
> £
>
> Thanks!
> S
>
>