Among these 3 reports, "PartI", "DSAsubreport" and "PartIIsubreport". "PartI" is the main and the others are subreports.
If you check the subreports, I tried to find the sum of some varriable which does not work.
Thanks for your interest.
Among these 3 reports, "PartI", "DSAsubreport" and "PartIIsubreport". "PartI" is the main and the others are subreports.
If you check the subreports, I tried to find the sum of some varriable which does not work.
I have reattached the file which I have modified some variables.
The Function "Sum" will not Sum a Control on a Form or a Report. It will only Sum a Field from a Table or Query. So when you use =Sum([rptTerminalAllowed]) this will not work as this is a control on your Report. Sum([TerminalAllowed]) will work because TerminalAllowed is a Field in your Query.