reporting date in fiscal qtr's

G

Guest

How to report a date in fiscal qtr's, our fiscal year begins Nov 1 of the
year. How to covert a date to format like 2005-Q1, 2005-Q2 when using
crosstabs and reports?
I already use:
Qtr: Format(DateAdd("m",2[Table2].[Date]), "Qqyy")) Q105, Q205, etc would
like 2005-Q1, 2005-Q2, etc
 
D

David Lloyd

Jim:

One approach would be to create a Quarter field in your query and then use
this field to build the format you desire.

For example:

IIF(Month(MyDate)<=3, 1, IIF(Month(MyDate)<=6, 2,
IIF(Month(MyDate)<=9,3,4))) as Quarter

Then for the Control Source you could use something like:

=Year([MyDate]) & "-Q" & [Quarter]

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


How to report a date in fiscal qtr's, our fiscal year begins Nov 1 of the
year. How to covert a date to format like 2005-Q1, 2005-Q2 when using
crosstabs and reports?
I already use:
Qtr: Format(DateAdd("m",2[Table2].[Date]), "Qqyy")) Q105, Q205, etc would
like 2005-Q1, 2005-Q2, etc
 
A

adsl

jim said:
How to report a date in fiscal qtr's, our fiscal year begins Nov 1 of the
year. How to covert a date to format like 2005-Q1, 2005-Q2 when using
crosstabs and reports?
I already use:
Qtr: Format(DateAdd("m",2[Table2].[Date]), "Qqyy")) Q105, Q205, etc
would
like 2005-Q1, 2005-Q2, etc
 
A

adsl

David Lloyd said:
Jim:

One approach would be to create a Quarter field in your query and then use
this field to build the format you desire.

For example:

IIF(Month(MyDate)<=3, 1, IIF(Month(MyDate)<=6, 2,
IIF(Month(MyDate)<=9,3,4))) as Quarter

Then for the Control Source you could use something like:

=Year([MyDate]) & "-Q" & [Quarter]

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or
warranties.


How to report a date in fiscal qtr's, our fiscal year begins Nov 1 of the
year. How to covert a date to format like 2005-Q1, 2005-Q2 when using
crosstabs and reports?
I already use:
Qtr: Format(DateAdd("m",2[Table2].[Date]), "Qqyy")) Q105, Q205, etc
would
like 2005-Q1, 2005-Q2, etc
 
A

adsl

adsl said:
jim said:
How to report a date in fiscal qtr's, our fiscal year begins Nov 1 of the
year. How to covert a date to format like 2005-Q1, 2005-Q2 when using
crosstabs and reports?
I already use:
Qtr: Format(DateAdd("m",2[Table2].[Date]), "Qqyy")) Q105, Q205, etc
would
like 2005-Q1, 2005-Q2, etc
 
A

adsl

adsl said:
David Lloyd said:
Jim:

One approach would be to create a Quarter field in your query and then
use
this field to build the format you desire.

For example:

IIF(Month(MyDate)<=3, 1, IIF(Month(MyDate)<=6, 2,
IIF(Month(MyDate)<=9,3,4))) as Quarter

Then for the Control Source you could use something like:

=Year([MyDate]) & "-Q" & [Quarter]

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or
warranties.


How to report a date in fiscal qtr's, our fiscal year begins Nov 1 of the
year. How to covert a date to format like 2005-Q1, 2005-Q2 when using
crosstabs and reports?
I already use:
Qtr: Format(DateAdd("m",2[Table2].[Date]), "Qqyy")) Q105, Q205, etc
would
like 2005-Q1, 2005-Q2, etc
 
A

adsl

David Lloyd said:
Jim:

One approach would be to create a Quarter field in your query and then use
this field to build the format you desire.

For example:

IIF(Month(MyDate)<=3, 1, IIF(Month(MyDate)<=6, 2,
IIF(Month(MyDate)<=9,3,4))) as Quarter

Then for the Control Source you could use something like:

=Year([MyDate]) & "-Q" & [Quarter]

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or
warranties.


How to report a date in fiscal qtr's, our fiscal year begins Nov 1 of the
year. How to covert a date to format like 2005-Q1, 2005-Q2 when using
crosstabs and reports?
I already use:
Qtr: Format(DateAdd("m",2[Table2].[Date]), "Qqyy")) Q105, Q205, etc
would
like 2005-Q1, 2005-Q2, etc
 
A

adsl

jim said:
How to report a date in fiscal qtr's, our fiscal year begins Nov 1 of the
year. How to covert a date to format like 2005-Q1, 2005-Q2 when using
crosstabs and reports?
I already use:
Qtr: Format(DateAdd("m",2[Table2].[Date]), "Qqyy")) Q105, Q205, etc
would
like 2005-Q1, 2005-Q2, etc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top