我在报告中有一个表达式:
=Year(First(Fields!DepositDate.Value, "dsetCoverSheet")) Mod 100
这给出了DepositDate中年份的最后2位数字,例如如果DepositDate是2013年7月1日,则给出13。
我需要的是财政年度,即2013年1月1日至2014年6月30日,以便2013年7月1日给出14。
我该怎么做?
答案 0 :(得分:1)
为什么不在申请表达之前的6个月内添加?
=Year(DateAdd(DateInterval.Month
, 6
, First(Fields!DepositDate.Value, "dsetCoverSheet")))
Mod 100