Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone
I need to dispaly number as percentage
Used num(value,'#,#0.0%')
does not work
Try #.##0,00% or #,##0.00%, depending on your decimal and thousand separators.
Hi,
What is the value of the field value and what you want to show.
If its 100 and you want to show 100% then the best way is
=Value&'%'
The reason is when you use the num (Value,'#,##0.00%')
This will multiply the number by 100 and then show as %.
Meaning in our example is you use num (Value,'#,##0.00%') where Value is 100
Then the output will be 10,000%.
Hope this is clear to you.
Regards,
Kaushik Solanki
Hi Kaushik
I have used =Value&'%' also but not getting the correct result.
All amounts are showed as 0.
Hi,
Is it possible for you to upload the application with some sample data, so that we can easily guide you to solution.
Regards,
Kaushik Solanki
what is your selection in the "Number Format Settings" tab?
It is Number
I changed it to Expression default.
now value & '%' is woking
Thanks