Grouping (1 Viewer)

greg2725d

New member
Local time
Today, 01:14
Joined
Sep 29, 2011
Messages
1
So I have a simple database set up for customer service contracts. These contracts need to be reviewed yearly. I need to create a report that shows us all of our past due contracts. However, these reports need to be sorted by:
1: 0-30 days past due
2: 30-60 days past due
3: 60-90 days past due
4: 90+ days past due

I was able to calculate the days over due just fine, This just tells me how many days from the current day another day is.
Code:
DateDiff("d",[Products]![Initial Date],Now())-365

But I have no idea on how to group them, the way I need them. Any help would be great. I'm fairly new to the reporting part of access btw. :)
 

vbaInet

AWF VIP
Local time
Today, 06:14
Joined
Jan 22, 2010
Messages
26,374
One way would be to create four seperate subreports.

There are other ways, but I can't think now... too busy :)
 

Users who are viewing this thread

Top Bottom