Hi,
I have a formula field in the main report which gets data from a shared variable of a subreport. How do i get a summary value of this formula field in the main report to work.
When i tried i got an error as below
"Summary or running total could not be created"
Subreport formula name: sFedFUTA
whileprintingrecords;
shared numbervar FedFUTA := {UPR40100.FUSUWLMT}
Main Report formula name: sFEDFUTA
whileprintingrecords;
shared numbervar FedFUTA;
FedFUTA ;
formula name: FUTAWages
if {@GrossWages} < {@sFEDFUTA} then
{@GrossWages} else
{@sFEDFUTA}
formula name: FUTAWagesTotal
sum({@FUTAWages})
When i try to use the sum function it get "Summary or running total could not be created"
What's Wrong....
Please help
I have a formula field in the main report which gets data from a shared variable of a subreport. How do i get a summary value of this formula field in the main report to work.
When i tried i got an error as below
"Summary or running total could not be created"
Subreport formula name: sFedFUTA
whileprintingrecords;
shared numbervar FedFUTA := {UPR40100.FUSUWLMT}
Main Report formula name: sFEDFUTA
whileprintingrecords;
shared numbervar FedFUTA;
FedFUTA ;
formula name: FUTAWages
if {@GrossWages} < {@sFEDFUTA} then
{@GrossWages} else
{@sFEDFUTA}
formula name: FUTAWagesTotal
sum({@FUTAWages})
When i try to use the sum function it get "Summary or running total could not be created"
What's Wrong....
Please help