J
Joao
Hello everybody,
Let's assume I have this coded SQL in the Report_Open property:
Private Sub Report_Open(Cancel As Integer)
RecordSource = "SELECT People, Address" _
& " FROM Lisbon " _
& " WHERE Year= " & intYear
End Sub
If I call this report thru a FORM, how can I pass the intYear variable as a
parameter?
Let's assume I have this coded SQL in the Report_Open property:
Private Sub Report_Open(Cancel As Integer)
RecordSource = "SELECT People, Address" _
& " FROM Lisbon " _
& " WHERE Year= " & intYear
End Sub
If I call this report thru a FORM, how can I pass the intYear variable as a
parameter?