Add something like this to the record selection criteria:
(
{MyTable.MyDate >= date(2002,1,1)
and
{MyTable.MyDate < date(2002,11,1)
)
or
(
{MyTable.MyDate >= date(2001,1,1)
and
{MyTable.MyDate < date(2001,11,1)
)
You can create a formula field to group on:
If {MyTable.MyDate >= date(2002,1,1)
and
{MyTable.MyDate < date(2002,11,1)
then
'1/2002 through 10/2002'
else
'1/2001 through 10/2001'
Now the first group of data will be the 2001 set, the next will be the 2002.
You can now use conventional right click insert summary operations on the fields.
-k
kai@informeddatadecisions.com