I would like to extract the year part from a date field as a Fiscal Year field. I believe IIF statement can help in this case.
FiscalYear: IIf([Completed]>=#01/05/2014#,DatePart("yyyy",[Completed]),(DatePart("yyyy",[Completed]))-1)
How can I use only 01/05 without year for comparison? The completed field may contain different year dates. Thanks!