Re: Trailing Zeros

2006-09-03 Thread Klaus Major

Hi Camm29,


I have been using Round(number,x)


add a line and you are done:

...
set the numberformat to 0.00
put Round(number,2)
...

or whatever value fits for you for the second parameter precision,
see the docs.

:-)


I wish to keep trailing Zero's

1234.00
1234.50 etc etc
I can only get
1234
1234.5
no zero's . i know i'm missing something simple !!!


Hope that helps.


Regarda
__


Best

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Trailing Zeros

2006-09-03 Thread Mark Schonewille

set the numberformat to #.00
put 1234*1

--

Economy-x-Talk
Consultancy and Software Engineering
http://economy-x-talk.com
http://www.salery.biz

Get your store on-line within minutes with Salery Web Store software.  
Download at http://www.salery.biz


Op 3-sep-2006, om 15:53 heeft Camm29 het volgende geschreven:


I have been using Round(number,x)

I wish to keep trailing Zero's

1234.00

1234.50 etc etc

I can only get

1234
1234.5

no zero's . i know i'm missing something simple !!!

Regarda



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Trailing Zeros

2006-09-03 Thread Jim Ault
Function format(specification string, value)

Returns a formatted string that has been transformed according to the rules
of the C printf() function.
Make note of that this is predicated on a PRINT function, which means it is
geared to padding the result with spaces if needed, thus the charLength
determines the total characters returned in order to build print outs.

In Rev, it is easy to simply
put format(%0.2f,1256.7/3.3) = round, no leading spaces, add trailing 0's
= '380.82'

put format(%0.10f,1256.7/3.3) = round, no leading spaces, add trailing 0's
= '380.8181818182'

put format(%40.10f,1256.7/3.3) = round, add trailing 0's, and spaces to
make a total of 40 chars
= '  380.8181818182'

put format(%40.2f,1200/3) = round, add trailing 0's, and spaces to make a
total of 40 chars
= '  400.00'

put format(%40.10f,1200/3) = round, add trailing 0's, and spaces to make a
total of 40 chars
= '  400.00'

Hope this helps,

Jim Ault
Las Vegas

On 9/3/06 7:07 AM, Mark Schonewille [EMAIL PROTECTED]
wrote:

 set the numberformat to #.00
 put 1234*1
 
 --
 
 Economy-x-Talk
 Consultancy and Software Engineering
 http://economy-x-talk.com
 http://www.salery.biz
 
 Get your store on-line within minutes with Salery Web Store software.
 Download at http://www.salery.biz
 
 Op 3-sep-2006, om 15:53 heeft Camm29 het volgende geschreven:
 
 I have been using Round(number,x)
 
 I wish to keep trailing Zero's
 
 1234.00
 
 1234.50 etc etc
 
 I can only get
 
 1234
 1234.5
 
 no zero's . i know i'm missing something simple !!!
 
 Regarda
 
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Trailing Zeros

2006-09-03 Thread Camm29
Thanks , i try the methods given and read the docs !
Regards
Camm

- Original Message -
From: Camm29 [EMAIL PROTECTED]
To: use-revolution@lists.runrev.com
Sent: Sunday, September 03, 2006 2:53 PM
Subject: Trailing Zeros


I have been using Round(number,x)

I wish to keep trailing Zero's

1234.00

1234.50 etc etc

I can only get

1234
1234.5

no zero's . i know i'm missing something simple !!!

Regarda
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.0.405 / Virus Database: 268.11.7/433 - Release Date: 30/08/2006



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution