Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一份使用 SSRS BIDS 2008 R2 的报告。我正在寻找一种通过简单地删除小数来转换我的数字的方法。我想保留小数点后的数字,只需删除 ' 。'
目标: 将数字(当前为货币)格式化为字符串,但保留尾随数字。即当前值 30.56 期望值 3056
我找到了许多删除小数点的方法,但它们最终要么舍入我的数字,要么删除小数点后的数字。我想知道是否可以保留小数点后的数字,但没有小数点。
我觉得我在这里遗漏了一些重要的东西,一旦被指出,我很可能会觉得有点傻。
提前致谢。
只需将数字转换为字符串并替换.:
.
=Replace(Fields!MyColumn.Value.ToString, ".", "")