I don't know why, I have asked about this before but to no resolve my code does not show correctly. It is a TextBox on the report.
The code runs from a subform on a main form is the trick, I think. Main form is named CheckRegister and subform is named FReg
StartDate and EndDate are 2 unbound fields on the subform. Syntax Error I suppose referring to the form.
Code on the Report is Below:
="Check Reconciliation for
the Time Period of " & [Forms]![FReg]![StartDate] & " thru " & [Forms]![FReg]![EndDate]
Okay, I solved it and here is what worked.
="Check Reconciliation for
the Time Period of " & [Forms]![CheckRegister]![Check Register].[Form]![StartDate] & " " & "thru" & " " & [Forms]![CheckRegister]![Check Register].[Form]![EndDate]