Working on a report that has data such as this:
Job Number 1234
action 1 machine1 1:30
action 2 user 2:30
action 3 user 3:30
action 4 user 4:30
My SQL query grabs actions and times for users only, so the first action is action 2 @ 2:30.
I have the report grouped by job number, in the grouping I have a begin date and end date, in order to provide a summary of start and end time and total minutes used on a certain job. Currently the grouping shows action 1 through action 4, when it should only show action 2 through action 4. The SQL query runs properly in the detail section, but the grouping fails to pick up what's in the detail section and picks up all info for the job.
Any ideas?
Job Number 1234
action 1 machine1 1:30
action 2 user 2:30
action 3 user 3:30
action 4 user 4:30
My SQL query grabs actions and times for users only, so the first action is action 2 @ 2:30.
I have the report grouped by job number, in the grouping I have a begin date and end date, in order to provide a summary of start and end time and total minutes used on a certain job. Currently the grouping shows action 1 through action 4, when it should only show action 2 through action 4. The SQL query runs properly in the detail section, but the grouping fails to pick up what's in the detail section and picks up all info for the job.
Any ideas?