A family of Microsoft relational database management systems designed for ease of use.
Create a form frmParameters with a text box txtFestivalYear.
Change the parameter [Enter Festival Year:] to a reference to the text box:
[Forms]![frmParameters]![txtFestivalYear]
Of course, the form must be open when you run the report. You could place a command button cmdOpenReport on frmParameters to open the report:
Private Sub cmdOpenReport_Click()
If IsNull(Me.txtFestivalYear) Then
Me.txtFestivalYear.SetFocus
MsgBox "Please enter a year", vbExclamation
Exit Sub
End If
DoCmd.OpenReport "rptMyReport", acViewPreview
End Sub
where rptMyReport is the name of the report.