在c#crystal report中使用日期参数仅限月份

时间:2013-08-18 13:49:59

标签: c# crystal-reports

如何仅使用月份的日期参数?

例如:我需要打印整个6月的数据,我想按月分类和打印,没有日期和年份

(在C#中工作)

提前谢谢

1 个答案:

答案 0 :(得分:0)

使用“字段资源管理器”创建数字参数{?Month},值为1-12,相应的说明(例如1表示1月)。

接下来,创建一个类似于:

的记录选择公式
 // calculate the beginning of the month and the last of month (add a month to the first day of the month, then subtract a day)
{table.date} IN Date( Year(DataDate), {?Month}, 1) TO Date( DateAdd("m", 1, Date( Year(DataDate), {?Month}, 1)) - 1 )