MS Access 2019 desktop report<\/strong> Print View issue.<\/strong><\/p>\n
In Report View unbound text boxes display calculation correctly. When switched to Print View the text boxes do not display the calculation correctly. Do not understand why. HELP!!<\/p>\n
Report View:<\/p>\n Print View:<\/p>\n Design:<\/strong><\/p>\n I have a report, Report_GeneralLedger. The report’s source is:<\/p>\n SELECT Account.AcctID, Account.Account, Account.Fund FROM Account;<\/p>\n There is a text box for AcctID, Account and Fund.<\/p>\n There are also the following unbound text boxes:<\/p>\n Ø Assessments Control Source =[Child2].[Report]![AssessmentTotal]<\/p>\n Ø InterestIncome =[Child4].[Report]![InterestIncomeTotal]<\/p>\n Ø Adjustments =[Child5].[Report]![GLAdjustmentTotal]<\/p>\n Ø Disbursements =-[Child6].[Report]![DisbursementTotal]<\/p>\n Ø BALANCE =Nz([Assessments])+Nz([InterestIncome])+Nz([Adjustments])+Nz([Disbursements])<\/p>\n There are 4 subreports referred to in the control sources, above for the text boxes.<\/p>\n The form has only one Event associated with it and its controls:<\/p>\n Private Sub Report_Open(Cancel As Integer)<\/p>\n If CurrentProject.AllForms(“Form_OpenAccount”).IsLoaded = True Then<\/p>\n DoCmd.Close acForm, “Form_OpenAccount”<\/p>\n End If<\/p>\n End Sub<\/p>\n Report View:<\/strong><\/p>\n The 5 text boxes listed above display the Total from their respective subreports. If there is no activity, the text box displays a -0-. The subreports are displayed even if there is no activity.<\/p>\n Example 1 – each Child subreport has activity:<\/p>\n
<\/p>\n
<\/p>\n