Hi
I am trying to change the control source of a control on a report depending on a selection on the form where the report was called from.
Here is the code i have tried:
[code]
Private Sub Report_Open(Cancel As Integer)
If (Forms![frm_Control Center]!fundfltr = "GO") Then
Reports![Copy of rpt_Projlist]![DM levy].Control Source = [GO]
Reports![Copy of rpt_Projlist]![DM levy_Label].Caption = "GO"
End If
End Sub
[code]
Thanks