Apr 10, 2002 #1 sauxs Programmer Joined Apr 10, 2002 Messages 1 Location IT I must change data source report from vba on onload function. Sorry for my English... thanks
Apr 10, 2002 #2 galar Programmer Joined Feb 19, 2002 Messages 59 Location IL Do you mean Record Source? In that case: Private Sub Report_Open(Cancel As Integer) Me.RecordSource = "select ...." End Sub Upvote 0 Downvote
Do you mean Record Source? In that case: Private Sub Report_Open(Cancel As Integer) Me.RecordSource = "select ...." End Sub