I have 3 different sale subreports within a main sale report. I want a grand Total of all 3. I use the following code for each of the subreport totals. The totals reside within the individual subreports.
=IIf(Sum([TotalUnitSale]) Is Null,0,Sum([TotalUnitSale]))
(I have called this txt box TotalUnitSale)
I have subtotal'd each of the subreports within the detail section of my main Sale report and the code for that subtotal is:
=IIf(IsError([SubReportName].[Report]![TotalUnitSale]),0,[SubReportName].[Report]!TotalUnitSale])
(I have called this txtbox TotalSale, it's objective is to total all the sales for that particular invoice)
Now I want to place a GrandTotal in my report footer. When I do this, I receive no value. I am using the following code:
=sum([TotalSale])
The objective of this grand total is to sum all the invoices for the final grand total of sales.
The GrandTotal value never displays (my visible is on).
Can someone help me please.
Thank you for your time.
Dawn.
=IIf(Sum([TotalUnitSale]) Is Null,0,Sum([TotalUnitSale]))
(I have called this txt box TotalUnitSale)
I have subtotal'd each of the subreports within the detail section of my main Sale report and the code for that subtotal is:
=IIf(IsError([SubReportName].[Report]![TotalUnitSale]),0,[SubReportName].[Report]!TotalUnitSale])
(I have called this txtbox TotalSale, it's objective is to total all the sales for that particular invoice)
Now I want to place a GrandTotal in my report footer. When I do this, I receive no value. I am using the following code:
=sum([TotalSale])
The objective of this grand total is to sum all the invoices for the final grand total of sales.
The GrandTotal value never displays (my visible is on).
Can someone help me please.
Thank you for your time.
Dawn.