using CR11 and SQL2000, I have a report called "productivity" which lists people's productivity, grouped by username, then by date (week). This works great.
Now I'm trying to add in a sub-report called "quality" where I take the shared values from the subreport, an put them on the main report, where the sub report is also grouped by username, then by date (week). The subreport is linked to the main report by username.
However, the subreport values are only showing the value from the last week, not each week, although they work correctly in the subreport if I run it manually.
The subreport, run on it's own looks like this:
NAME QUALITY WEEK
bob 151 9/1
bob 322 9/7
bob 312 9/14
but when I link it in the main report, I get this
NAME PRODUCTIVITY QUALITY WEEK
bob 55 312 9/1
bob 34 312 9/7
bob 31 312 9/14
It's just taking the quality from the last week, and using it on each row. How can I get each week's quality to match up on the main report? Any help is greatly appreciated, thanks!
Now I'm trying to add in a sub-report called "quality" where I take the shared values from the subreport, an put them on the main report, where the sub report is also grouped by username, then by date (week). The subreport is linked to the main report by username.
However, the subreport values are only showing the value from the last week, not each week, although they work correctly in the subreport if I run it manually.
The subreport, run on it's own looks like this:
NAME QUALITY WEEK
bob 151 9/1
bob 322 9/7
bob 312 9/14
but when I link it in the main report, I get this
NAME PRODUCTIVITY QUALITY WEEK
bob 55 312 9/1
bob 34 312 9/7
bob 31 312 9/14
It's just taking the quality from the last week, and using it on each row. How can I get each week's quality to match up on the main report? Any help is greatly appreciated, thanks!