RDL/RDLC 矩阵报告列标题格式

发布于 2024-10-23 20:57:41 字数 455 浏览 5 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅哥哥的热头脑 2024-10-30 20:57:41

您应该使用 =MonthName(Month(Fields!FinancialsTableMonthYear.Value))

You should use =MonthName(Month(Fields!FinancialsTableMonthYear.Value))

冷月断魂刀 2024-10-30 20:57:41

如果你想显示月份的名称,你可以使用这种格式:

Format(Fields!FinancialsTableMonthYear.Value, "MMM")

将“MMM”更改为你想要的任何格式。

If you want to show the name of the month, you can use this format:

Format(Fields!FinancialsTableMonthYear.Value, "MMM")

Change the "MMM" to any format you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文