矩阵报告服务问题

发布于 2024-07-30 12:18:17 字数 319 浏览 4 评论 0原文

我有一个矩阵,其中的行表示名称(Ex 商店名称),并且我在数据单元格中有与该名称相关的数据。 我还有另一个采用这种格式的日期字段 (MM/DD/YYYY)。 我想在商店名称和日期字段的月份之间使用交叉表。

                   Jan  Feb Mar Apr (From Date)
 A (Store Name)    10   5    3   2
 B                  3   4    2   1

我可以使用任何表达式来获取列标题上的月份格式吗?

谢谢。

I have a matrix with rows indicating a name (Ex Store name) and I have data pertaining to that in the DATA cells. I also have another date field in this format (MM/DD/YYYY). I would like to use a cross tab between Store Names and Just the Month of the date field.

                   Jan  Feb Mar Apr (From Date)
 A (Store Name)    10   5    3   2
 B                  3   4    2   1

is there any expression I can use to get the month format on the header of column.

thx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

荒岛晴空 2024-08-06 12:18:17

像这样的事情:
通过 to_char(when, 'MMM') 从数据组中选择 to_char(when,'MMM'), sum(what)

Something like this:
Select to_char(when,'MMM'), sum(what) from data group by to_char(when, 'MMM')

挖个坑埋了你 2024-08-06 12:18:17

月份的列组标签需要与列组相同。

就像是
=Fields!MyDateValue.ToString("MMM")

The column group label for month needs to be the same as the column group.

Something like
=Fields!MyDateValue.ToString("MMM")

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