Hi, I am performing a percentage calculation between two columns.
My business requirements is that each number should also have a '%' sign besides it. for example: (1.2%, 21.34%...)
current percent column:
1.2
21.34
33.33
Desired outcome:
1.2%
21.34%
33.33%
Can someone please guide me to how I can get from current percent column: to Desired outcome: ?
Thank you,
Gurpreet
Solved! Go to Solution.
Are you using a Table Tool for reporting at any time in your workflow? If so, in the column settings, you can add a Suffix to your column. Specifying % in the text box would also accomplish this while allowing your data to behave as a number.
Thank you, both the solutions are very helpful, really appreciate your time and help :)
Hi,
If I would like to see Percentage in my Chart using Charting Tool, how can I do it?
I cannot change the number to string format. if so, I will not be able to generate the chart.
Thanks.
Hi Gurpreet,
you can also try the function PadRight(ToString([Number]), Length(ToString([Number]))+1, "%") and it should take care of any number of decimals
Hi @Amy18 ,
You can use the Suffix option in the Vertical Axis section of the Configuration window. I have attached the solution. Does this help?
Regards,
Sujan
Sorry.
No, I would like to see % added to each number label.
Like on your example, can I see 1.2%, 21.3% and 33.3 on the chart?
Thanks.
Thanks.
That helps.