从 SSRS 的图表中排除 WeekDate
exclude WeekDate from the chart in SSRS
我在 SSRS 中创建了这张图表:
我有一个问题:
我想从我的图表中排除一些工作日。我想排除工作日 52。我在这里试过:
and WeekDate not like '2015-12-27'
但它并没有真正起作用。
如何排除某些值?
您可以过滤图表中使用的值,只需通过右键单击图表和 select Chart Properties
.
来设置过滤器
在 filter
选项卡中添加一个新的过滤器并设置如下:
在 expression
中使用以下内容:
=Switch(
Fields!WeekDate.Value="2016-01-02","Exclude",
Fields!WeekDate.Value="2016-01-03","Exclude",
true,"Include"
)
In your case put the dates you want to exclude "2015-12-27"
在Value
属性中使用这个表达式:
="Include"
它将按如下所示过滤您的报告:
如果这对你有帮助,请告诉我。
在 SSRS 报告中 select 数据集中的相关列使用报告设计。将此数据 (weekDate) 应用为 WeekDate < '2015-12-27'.
这将影响报表数据在图表上的显示。
我在 SSRS 中创建了这张图表:
我有一个问题:
我想从我的图表中排除一些工作日。我想排除工作日 52。我在这里试过:
and WeekDate not like '2015-12-27'
但它并没有真正起作用。 如何排除某些值?
您可以过滤图表中使用的值,只需通过右键单击图表和 select Chart Properties
.
在 filter
选项卡中添加一个新的过滤器并设置如下:
在 expression
中使用以下内容:
=Switch(
Fields!WeekDate.Value="2016-01-02","Exclude",
Fields!WeekDate.Value="2016-01-03","Exclude",
true,"Include"
)
In your case put the dates you want to exclude
"2015-12-27"
在Value
属性中使用这个表达式:
="Include"
它将按如下所示过滤您的报告:
如果这对你有帮助,请告诉我。
在 SSRS 报告中 select 数据集中的相关列使用报告设计。将此数据 (weekDate) 应用为 WeekDate < '2015-12-27'.
这将影响报表数据在图表上的显示。