矩阵报告服务问题
我有一个矩阵,其中的行表示名称(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的事情:
通过 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')
月份的列组标签需要与列组相同。
就像是
=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")