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 包,它要求我的最终用户在参数中输入货币值。有没有办法让他们只能输入数字?还有一种方法可以使我默认的值显示为 0.00?每次我尝试输入它默认为 0 的值。
如果您将参数的数据类型设置为“整数”
然后,您可以使用函数添加默认值
=FormatCurrency(Fields!SomeField.Value, "C")
希望有帮助