I've added the year and month fields to my query, but I
have one problem.
ex. Fiscal year begins 12/1/2001; data shows fiscal year
12/2001 when it's actually the 1st month of FY 2002.
How can I change this to reflect December as the next
year? Also, how can I group these into quarters on the
fiscal year dates? The current query groups all data into
Q1 and Q4 and shows nothing for Q3 and Q4.
-----Original Message-----
Type a calculated field into the Field column of your query (in query design
view).
Something like this:
FiscalYear: Year(DateAdd("m", 6, [InvoiceDate]))
You can then group by that field in your report.
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
How do I create a report /query that will pull my data by
fiscal year instead of calendar year? I'm trying to build
a report that shows data by fiscal quarter and I'm running
into a roadblock. Please help!!
.