Creating a Quarterly Report

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

Guest

How do I divide up a report by quarter? For example:

2007 Q1
data
data
data

2006 Q4
data
data
data

2006 Q3
etc.
 
Thank you Marshall!
--
~Connie


Marshall Barton said:
Use Sorting and Grouping (View menu) to group on an
expression like:
=Format(datefield, "yyyy \Qq")
and select Yes for the group header property.

Then add a text box to the group header section and bind it
to the date field. Set its Format property to:
yyyy \Qq
 
Connie said:
How do I divide up a report by quarter? For example:

2007 Q1
data
data
data

2006 Q4
data
data
data

2006 Q3
etc.


Use Sorting and Grouping (View menu) to group on an
expression like:
=Format(datefield, "yyyy \Qq")
and select Yes for the group header property.

Then add a text box to the group header section and bind it
to the date field. Set its Format property to:
yyyy \Qq
 
Back
Top