How to report by fiscal qtr's?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How to report by fiscal qtr? Can the crosstab function be changed to show Q1
starting in Nov.?
 
How to report by fiscal qtr? Can the crosstab function be changed to show Q1
starting in Nov.?

FiscalQuarter: DatePart("q", DateAdd("m", 2, [datefield]))


John W. Vinson[MVP]
 
Is this correct syntax?
Fiscal Qtr: DatePart("q",DateAdd("m",2,[Table2]![Date]))

I get an error message when trying to run this crosstab query. (data type
mismatch in criteria expression).
Also, reporting by fiscal qtr and year would be great. i.e., Q404, Q105,
Q205 etc.



John Vinson said:
How to report by fiscal qtr? Can the crosstab function be changed to show Q1
starting in Nov.?

FiscalQuarter: DatePart("q", DateAdd("m", 2, [datefield]))


John W. Vinson[MVP]
 
Is this correct syntax?
Fiscal Qtr: DatePart("q",DateAdd("m",2,[Table2]![Date]))

I get an error message when trying to run this crosstab query. (data type
mismatch in criteria expression).
Also, reporting by fiscal qtr and year would be great. i.e., Q404, Q105,
Q205 etc.

Try FiscalQtr: Format(DateAdd("m", 2, [Table2].[Date]), "\Qqyy"))


John W. Vinson[MVP]
 
works great, thanks!!

John Vinson said:
Is this correct syntax?
Fiscal Qtr: DatePart("q",DateAdd("m",2,[Table2]![Date]))

I get an error message when trying to run this crosstab query. (data type
mismatch in criteria expression).
Also, reporting by fiscal qtr and year would be great. i.e., Q404, Q105,
Q205 etc.

Try FiscalQtr: Format(DateAdd("m", 2, [Table2].[Date]), "\Qqyy"))


John W. Vinson[MVP]
 
Back
Top