Add fiscal year to report using crosstab

N

Nick

I am using a cross from November 2008 to October 2009 with the fiscal year as
2009 in a report. The crosstab I am using works but I am unable to generate a
FY in the report heading. How would one add this to the report?
 
A

Allen Browne

You will need an expression in the query that generates the 2009 for the Nov
and Dec dates, e.g.:

FY: Year(DateAdd("m", -2, [YourDateField]))
 
Top