Let's make sure that you have everything. First create a label in your report's "Report Header" section and name it. "lblCaption". Next, in your report's "On Open" event, place the below.
That should do it.Code:Dim strHeader As String strHeader = InputBox("Enter your title in the box below") Me.lblCaption.Caption = Nz(strHeader)