Page 1 of 1

Prevent the multiply by 100 using number format property %

PostPosted: Tue Sep 03, 2013 1:02 pm
by deezzub
How to prevent the multiply by 100 using the number format property character "%"?

2013-09-03 13_01_19-Edit_integer_number_format_property.png
Edit interger / number format property window
2013-09-03 13_01_19-Edit_integer_number_format_property.png (45.6 KiB) Viewed 3210 times

Re: Prevent the multiply by 100 using number format property

PostPosted: Tue Sep 03, 2013 2:19 pm
by Peter de Groot
Hi,

I usually do,

format.png
format.png (5.03 KiB) Viewed 3202 times


###'%'

Regards,

Peter

Re: Prevent the multiply by 100 using number format property

PostPosted: Tue Sep 03, 2013 5:26 pm
by deezzub
Peter de Groot wrote:Hi,

I usually do,

format.png


###'%'

Regards,

Peter

If try that, I get a value like "5,0", but my intention was to get a value like "5 %" / "5,0 %" / "5,00 %". I used the "%" sign, because I want to get it after the number in the textfield. Is this not possible?

Re: Prevent the multiply by 100 using number format property

PostPosted: Tue Sep 17, 2013 9:55 am
by jcompagner
if you do a format like peter says, so "####'%'" then you should get a % sign in the back. that ' ' around it just makes sure that it is escaped, else the formattter will use it and then /100 happens.