如何显示尾随"%"符号?

时间:2018-03-16 08:23:07

标签: acumatica

在SO Line的折扣pct栏中,我想显示尾随"%"在里面。

enter image description here

我尝试将显示格式设置为" P"但这是一场灾难:)

enter image description here

因为实际值是数据库中的百分比率,所以它不必要地将它乘以100。

enter image description here

感谢您的回答。

1 个答案:

答案 0 :(得分:2)

您应该将DisplayFormat设置为0.00'%'

enter image description here

因此您将获得以下内容:

enter image description here

如果您不想显示小数部分,请使用0'%'

更新

您可以使用#,##0.00%显示格式。