SSRS文本和计算
在我的一个表格单元格中的 SSRS 中,我进行了以下计算:
=((SUM(Fields!Shipment_Weight.Value)) / 2000)
是否可以在返回的值中添加一个 T 来表示它是吨?
In SSRS in one of my tables cells I have the following calculation:
=((SUM(Fields!Shipment_Weight.Value)) / 2000)
Is there anyway to then add a T to the value that this returns denoteing that it is Tons?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
=CStr(((SUM(字段!Shipment_Weight.Value)) / 2000)) + "T"
=CStr(((SUM(Fields!Shipment_Weight.Value)) / 2000)) + "T"