Hi There,
I have read through quite a few posts on this however I seem to be missing something.
I am using CRX with an SQL database in my main report and I am linking to a subreport which is actually an Access Database.
The Main Report is grouped by:
{person.name}
and at each group level there is a formula called: "Estimated Work ratio" which is ({project.time}/@workdays)*100 to give my ratio.
This calculation is working fine however for employee sick time or vacation will affect this work ratio so a "Time Off" Access database was created... Don't ask
The access Database has the following tables:
{person.name) //this is linked to the SQL {person.name}
(missedtime.time)
What I want to do is introduce "missed time" into my "Estimated work ratio" calculation. ((Project time/(@workdays-{missedtime.time}))*100
My Main Report Group Footer 1 has
Whileprintingrecords;
shared numbervar X;
The Subreport Report Footer a has
WhilePrintingRecords;
Shared NumberVar X :=Sum(Missed Time})
If I do not surpress Group Footer 1 on the main report, I see the correct missed time number grouped by {person.name} however when I try to enter this variable into the "Estimated work Ratio" formula I get the error:
"A summary has been specified on a non-recurring field"
Any help would be appreciated...I hope this is enough detail.
Thanks
R
I have read through quite a few posts on this however I seem to be missing something.
I am using CRX with an SQL database in my main report and I am linking to a subreport which is actually an Access Database.
The Main Report is grouped by:
{person.name}
and at each group level there is a formula called: "Estimated Work ratio" which is ({project.time}/@workdays)*100 to give my ratio.
This calculation is working fine however for employee sick time or vacation will affect this work ratio so a "Time Off" Access database was created... Don't ask
The access Database has the following tables:
{person.name) //this is linked to the SQL {person.name}
(missedtime.time)
What I want to do is introduce "missed time" into my "Estimated work ratio" calculation. ((Project time/(@workdays-{missedtime.time}))*100
My Main Report Group Footer 1 has
Whileprintingrecords;
shared numbervar X;
The Subreport Report Footer a has
WhilePrintingRecords;
Shared NumberVar X :=Sum(Missed Time})
If I do not surpress Group Footer 1 on the main report, I see the correct missed time number grouped by {person.name} however when I try to enter this variable into the "Estimated work Ratio" formula I get the error:
"A summary has been specified on a non-recurring field"
Any help would be appreciated...I hope this is enough detail.
Thanks
R