Open one form with different queries

  • Thread starter Thread starter Sash
  • Start date Start date
S

Sash

Is it possible to open one form using a different query depending on what
button the user selects. For example:

Sort High/Low
Sort Old/New
Search MRN
Search Account#
Search SSN

I should also mention that this form has a subform.
 
Got it. Below is what I put behind a button on the form for Sort High/Low and
it filters using a query.

Dim stHighLow As String
stHighLow = "SortHighLow"
DoCmd.ApplyFilter stHighLow
 
Back
Top