The first button opens a form,
The second preforms a filter,Code:Private Sub Command188_Click() DoCmd.OpenForm "SportsMBLFrm", acNormal End Sub
Looking to combine into a single operation to open the form in the filtered configuration.Code:Private Sub InProgress_Click() Me.Filter = "[Progress] Is Not Null" Me.FilterOn = True Me.Caption = "Games in Progress" Me.lblSort.Caption = "Games Underway" End Sub
Not having any luck.
Jim O