How to show trailing “%” symbol?

本小妞迷上赌 提交于 2019-12-11 02:43:12

问题


In SO Line's discount pct column, i'd like to show trailing "%" in it.

I tried to set the display format to "P" but it was a disaster :)

Because the actual value is the percentage rate in the database, it unnecessarily multiply it with 100.

Thanks for the answers.


回答1:


You should set the DisplayFormat to 0.00'%'

and as a result you will get the following:

If you don't want to show the decimal part use 0'%'.

UPDATE

You may use #,##0.00% Display Format.



来源:https://stackoverflow.com/questions/49316031/how-to-show-trailing-symbol

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!