SQL 报告服务格式(日期时间、数字
我使用像 Format(Fields!name.Value, "dd/MM/yyyy") 这样的表达式设置文本框的格式,
我可以以某种方式为日期时间和货币/浮点数设置全局格式,而无需为每个文本框设置它部分
i put the format of a textbox using expression like Format(Fields!name.Value, "dd/MM/yyyy")
can i somehow set a global format for datetime and currency/floats without having the need to set it for each textbox in part
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许。
您可以指定要使用的影响所有控件的报告语言/区域性 。
但是,我认为您不能指定与语言无关的某种格式“dd/MM/yyyy”。
Perhaps.
You can specify a report language/culture to use which affects all controls.
However, I don't think you can specify a certain format "dd/MM/yyyy" which is not linked to language.
我没有找到如何做到这一点,但我确实使用了宏记录器,所以我创建了一些宏来格式化报告中的内容,例如日期时间和现金,所以我现在用热键格式化单元格,这就是我的解决
方法也可以在数据库中格式化它并将其作为字符串发送,但它是一样的
i didn't found how to do that but i do use know a macro recorder, so i created some macros for formatting stuff in my report like for datetime and cash, so i format a cell with a hotkey now, that's my workaround
well you could also format it in DB and send it as string, but it's kind off the same