I have a form based on a query where the user can filter and sort in any of the fields of the form. I am able to print preview a report once the user filters the report but if the user sorts the report it does not sort on the report.
I have a button on my form with the following code on a print button which opens the report:
I don't know what else to do and I'm not that experienced with VBA.
I have a button on my form with the following code on a print button which opens the report:
Code:
Private Sub Command11_Click() Dim strWhere As String If Me.Dirty Then Me.Dirty = False 'save any edits If Me.FilterOn Then strWhere = Me.Filter DoCmd.OpenReport "rpt_PtNoBeginsWith", acViewPreview, , strWhere End Sub
Comment