SSRS 2008,当字段值 = 0.00 时将百分比格式化为 0% 并保持 Excel 类型?
当字段值 = 0.00 时,我想显示为 0%,所有其他时间显示为正常百分比。我知道我可以使用字符串操作来做到这一点,但如果我这样做,当报表导出到 Excel 时我会丢失类型并且无法拥有该类型。我尝试过 0.00%;0% 和 #.##%;#% 等不同的排列...但它们对我不起作用。
有什么想法吗?
谢谢!
When field value = 0.00, I want to display as 0%, all other times display as normal percentage. I know I can do it using string manipulation but if I do that, I lose the type when the report is exported to Excel and can't have that. I have tried different permutations of 0.00%;0% and #.##%;#%, etc... but they have not worked for me.
Any ideas out there?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要回答我自己的问题,请在 Format 属性中添加一个表达式: iif(value=0.00, "0%", "0.00%")
To answer my own question, in the Format property, add an expression: iif(value=0.00, "0%", "0.00%")