N
Nancy Lytle
Thanks to everyone's help I was able to get the information from the
sometimes empty subreport to fill out my calculations.
Now the tricky part: I need to use the same calculation for an "overall"
report Total - in the Report Footer. This is what I have so far:
Code:
=Sum([InitialAuthorization])+Sum([AuthorizationChanges])-IIf([rptExec_SP].[R
eport].[HasData],[rptExec_SP].[Report]![SumOblg],0)
I know this is wrong but I have tried:
=Sum([InitialAuthorization])+Sum([AuthorizationChanges])-Sum(IIf([rptExec_SP
].[Report].[HasData],[rptExec_SP].[Report]![SumOblg],0)) - it doesn't
recognize the subform (it is in the ProgramCode Footer)
and
=Sum([InitialAuthorization])+Sum([AuthorizationChanges])-IIf([rptExec_SP].[R
eport].[HasData],Sum([rptExec_SP].[Report]![SumOblg]),0) - This one causes a
passive crash (can't do anything - it thinks code is running)
Any ideas anyone?
TIA
Nancy L
sometimes empty subreport to fill out my calculations.
Now the tricky part: I need to use the same calculation for an "overall"
report Total - in the Report Footer. This is what I have so far:
Code:
=Sum([InitialAuthorization])+Sum([AuthorizationChanges])-IIf([rptExec_SP].[R
eport].[HasData],[rptExec_SP].[Report]![SumOblg],0)
I know this is wrong but I have tried:
=Sum([InitialAuthorization])+Sum([AuthorizationChanges])-Sum(IIf([rptExec_SP
].[Report].[HasData],[rptExec_SP].[Report]![SumOblg],0)) - it doesn't
recognize the subform (it is in the ProgramCode Footer)
and
=Sum([InitialAuthorization])+Sum([AuthorizationChanges])-IIf([rptExec_SP].[R
eport].[HasData],Sum([rptExec_SP].[Report]![SumOblg]),0) - This one causes a
passive crash (can't do anything - it thinks code is running)
Any ideas anyone?
TIA
Nancy L