Re: Percentage Formating
- To: mathgroup at smc.vnet.net
- Subject: [mg111109] Re: Percentage Formating
- From: SMiranda <sebastian.mirandadiaz at gmail.com>
- Date: Tue, 20 Jul 2010 07:54:57 -0400 (EDT)
- References: <i1u22r$7td$1@smc.vnet.net>
Thank you all !! I think this is now more complicated as I have to decide which solution I'll implement... :-) regards On 18 jul, 07:05, "Christoph Lhotka" <lho... at axp.mat.uniroma2.it> wrote: > PercentageForm[x_ /; 0 <= x <= 1] := > StringReplace[ToString[IntegerPart[10000 x]/100.] <> "%", > ".%" -> ".00%"] > > best regards... > > On 17/07/2010 14:16, SMiranda wrote: > > > > > There's an easy way of formating percentage numbers form reporting > > purposes... > > I mean... 0.05263 --> 5.26% > > > Thanks !