I have a an open report button which contains the following code:
Dim stDocName
stDocName = "rptServices"
DoCmd.OpenReport stDocName, acViewPreview, , "Service = '" & cboService & "'"
In the above case 'Service' is a field in both the form and the report. This is the bit that works.
I...