Page 1 of 1

number accurates to the second decimal place

Posted: 15 Jan 2014 16:22
by srjohn
For example, I have a number=12.345678901234567890
I want to show it and other variables on the status bar.
But the number is too long, it is hard to read the notification.
How to change the number accurates to the second decimal place?
Any idea will be good, thanks!
-srjohn

Re: number accurates to the second decimal place

Posted: 15 Jan 2014 17:18
by Martin
Hi,

You can format a number in a text field that supports variables like this:
{1.2345678,numberformat,0.00}

or when the number is stored in a variable called number:
{number,numberformat,0.00}

Regards,
Martin

Re: number accurates to the second decimal place

Posted: 17 Jan 2014 02:20
by srjohn
Thanks! {number,numberformat,0.00} works!
Thanks for your great APP!
-srjohn