Visual Studio中的当前月过滤器

时间:2017-03-22 13:35:08

标签: sql-server reporting-services

尝试按表格中的当前月份进行过滤。我知道我可以使用“m”但不知道要用什么来代替它。

或者这是一种更简单的方式来编写它。

enter image description here

enter image description here

enter image description here

enter image description here enter image description here enter image description here

2 个答案:

答案 0 :(得分:0)

过滤器值的表达式应为:

=DateAdd(DateInterval.Month, DateDiff(DateInterval.Month, CDate("1/1/1900"), Today), CDate("1/1/1900"))

答案 1 :(得分:0)

尝试

=DateAdd(DateInterval.Month, DateDiff(DateInterval.Month, CDate("1/1/1900"), Today) + 1, CDate("1/1/1900"))