如何仅使用月份的日期参数?
例如:我需要打印整个6月的数据,我想按月分类和打印,没有日期和年份
(在C#中工作)
提前谢谢
答案 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 )