I have a query that contains these fields:
=================
ID
Opened Date
Status
2weekDate
2weekPerson
4weekDate
4weekPerson
6weekDate
6weekPerson
=================
This query pulls data from a table that contains Issues by ID, and the #weekDate/Person contains the date and person that sent a notification. Now if the database is closed for a while and then run again, it is possible for them to send notifications on the 4week and never send them on the 2week. So im saying that some of these #week fields can contain nothing.
In my report I have to display all the issues that have had notifications sent, but i need to group them by the last time they were notified. Such as:
-Report-
2 week Issues
....
4 week Issues
....
6 week Issues
....
-End Report-
None of the issues should be displayed twice. So if they had notification sent on 2 weeks and on 4 weeks, it should only show on the 4 weeks.
Is this at all possible?
-Pete
=================
ID
Opened Date
Status
2weekDate
2weekPerson
4weekDate
4weekPerson
6weekDate
6weekPerson
=================
This query pulls data from a table that contains Issues by ID, and the #weekDate/Person contains the date and person that sent a notification. Now if the database is closed for a while and then run again, it is possible for them to send notifications on the 4week and never send them on the 2week. So im saying that some of these #week fields can contain nothing.
In my report I have to display all the issues that have had notifications sent, but i need to group them by the last time they were notified. Such as:
-Report-
2 week Issues
....
4 week Issues
....
6 week Issues
....
-End Report-
None of the issues should be displayed twice. So if they had notification sent on 2 weeks and on 4 weeks, it should only show on the 4 weeks.
Is this at all possible?
-Pete