wonderlander
Instructor
Application uses any of the following back ends : SQL, Access and Oracle
Data is stored as such
I want the report to print out in Job Start Date and then by Job Number. The output from the data above should give:
1/1/04 Job 56
1/1/04 Job 87
1/1/04 Job 123
2/1/04 Job 223
If I Group by date then I get the job number on every day it appears...hope that makes sense!
Data is stored as such
Code:
Date Employee Job Number
1/1/04 Ted Smith 123
1/1/04 Paul Taylor 123
2/1/04 Paul Taylor 123
2/1/04 Bob Little 87
2/1/04 Jamie Bent 223
3/1/04 Jamie Bent 223
1/1/04 David Grant 56
1/1/04 Bob Little 87
2/1/04 Ted Smith 123
1/1/04 Job 56
1/1/04 Job 87
1/1/04 Job 123
2/1/04 Job 223
If I Group by date then I get the job number on every day it appears...hope that makes sense!