I am having a problem passing values from a sub report to the main report. My main report lists tech support personnel and the number of support tickets they closed for the month. The main report is grouped by user name. The sub report provides the number of days the user was available to work (business days minus vacation etc). I am trying to get the days available number into the main report so I can determine the average number of tickets completed per work day. I have created a shared variable on both sides and linked the two by the user ID. However, I am getting the value of the first user listed in the sub report associated to every user in the main report. Below are the variable formulas I am using:
From Sub Report
Shared NumberVar DaysAvailable;
DaysAvailable :={@Total Availability}
In Main Report
Shared NumberVar DaysAvailable;
NumberVar DaysAvailable;
DaysAvailable := DaysAvailable
Any help would be greatly appreciated.
From Sub Report
Shared NumberVar DaysAvailable;
DaysAvailable :={@Total Availability}
In Main Report
Shared NumberVar DaysAvailable;
NumberVar DaysAvailable;
DaysAvailable := DaysAvailable
Any help would be greatly appreciated.