bongmarley
Programmer
I am creating a reportthat keep track of worker attendence.
I retrieve my data from an absence table. In the data base if a worker misses three days in a row then three seperate records are put into the table. When I create the report I want to be able to write toshow absence like this.
FROM TO DAYS
01/01/03 01/03/03 3
as of right now I can onlyget it toshow like this
FROM TO DAYS
01/01/03 01/01/03 1
01/02/03 01/02/03 1
01/03/03 01/03/03 1
When I loop through the records I want tobe able to merge more then one recordif its consecutive days. is this possible
I retrieve my data from an absence table. In the data base if a worker misses three days in a row then three seperate records are put into the table. When I create the report I want to be able to write toshow absence like this.
FROM TO DAYS
01/01/03 01/03/03 3
as of right now I can onlyget it toshow like this
FROM TO DAYS
01/01/03 01/01/03 1
01/02/03 01/02/03 1
01/03/03 01/03/03 1
When I loop through the records I want tobe able to merge more then one recordif its consecutive days. is this possible