I use this code to filter forms
If Chassis = "CV" Then
Me.Filter = "[Process Family] Like 'CV*'"
Else
Me.Filter = "[Process Family] Like 'A3*'"
End If
Me.FilterOn = True
But I can't get it to work on a SubReport.
Should it be the Filter property be set in the Main Report, and How should the code be different to filter the records.
If Chassis = "CV" Then
Me.Filter = "[Process Family] Like 'CV*'"
Else
Me.Filter = "[Process Family] Like 'A3*'"
End If
Me.FilterOn = True
But I can't get it to work on a SubReport.
Should it be the Filter property be set in the Main Report, and How should the code be different to filter the records.