RDL/RDLC 矩阵报告列标题格式
我正在尝试在 RDLC 报告的矩阵报告中设置列标题的格式。我在数据集中将列指定为 DateTime,如果我单独保留该列 例如:
=Fields!FinancialsTableMonthYear.Value
它显示良好 例如:1/1/2009 | 2009 年 2 月 1 日 | 3/1/2009 等等...
但是如果我尝试在列标题上添加任何格式 Ex:
=MonthName(Fields!FinancialsTableMonthYear.Value, true)
它将显示 Ex: #Error | #错误| #Error等等...
我也尝试过例如:
=Year(Fields!FinancialsTableMonthYear.Value)
有什么想法吗?
I am trying to format column headers in my Matrix report on an RDLC report. I have the columns specified as DateTime in my dataset and if I leave the column alone Ex:
=Fields!FinancialsTableMonthYear.Value
It displays fine Ex: 1/1/2009 | 2/1/2009 | 3/1/2009 Etc...
But if I try and put any formatting on the column header Ex:
=MonthName(Fields!FinancialsTableMonthYear.Value, true)
It will display Ex: #Error | #Error | #Error Etc...
I have also tried Ex:
=Year(Fields!FinancialsTableMonthYear.Value)
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用
=MonthName(Month(Fields!FinancialsTableMonthYear.Value))
You should use
=MonthName(Month(Fields!FinancialsTableMonthYear.Value))
如果你想显示月份的名称,你可以使用这种格式:
将“MMM”更改为你想要的任何格式。
If you want to show the name of the month, you can use this format:
Change the "MMM" to any format you want.