Open Filter Dialog box

Gavx

Registered User.
Local time
Tomorrow, 09:08
Joined
Mar 8, 2014
Messages
154
I would like to place a button on a form that when selected opens the Filter dialog box.
So I figure I select the field I want to filter on and then press a button that opens the Filter dialog box.
Using VBA how can I do this?

thanks
 
on design view of your form, add code to the Enter Event of
each controls you want to to filter on (the control should be Bound):
Code:
=SaveControlSource()
on your form VBA, define the function SaveControlSource()
Code:
Option Compare Database
Option Explicit

Dim m_controlSource As String
Dim m_controlName As String

Public Function SaveControlSource()
    Dim ctl As Control
    Set ctl = Screen.ActiveControl
    m_controlName = ctl.Name
    m_controlSource = ctl.ControlSource
End Function

on the click of a button, try this code:
Code:
Private Sub FilterButton_Click()

    Dim strCriteria As String

    ' Prompt user for a filter value
    strCriteria = InputBox("Enter filter criteria for " & UCase(m_controlName) & " (blank removes the filter)")
    
    ' Apply the filter
    If strCriteria <> "" Then
        Me.Filter = "[" & m_controlSource & "] Like '*" & strCriteria & "*'"
        Me.FilterOn = True
    Else
        Me.FilterOn = False
    End If

End Sub
 
Last edited:
What about right clicking on the control?
 
What about right clicking on the control?(
I can do this but I have to specify a value whereas the Filter dialog box (on some fields) presents the range of records and I merely choice one - this is the behaviour I want to obtain.
 
I would like to place a button on a form that when selected opens the Filter dialog box.
So I figure I select the field I want to filter on and then press a button that opens the Filter dialog box.
Using VBA how can I do this?

thanks
Using buttons On Click Event:
Application.CommandBars.ExecuteMso ("FiltersMenu")
 
Using buttons On Click Event:
Application.CommandBars.ExecuteMso ("FiltersMenu")
you must Setfocus to the Textbox to filter before you can call this function
otherwise Runtime error will occur.
 
Using buttons On Click Event:
Application.CommandBars.ExecuteMso ("FiltersMenu")
After selecting the field I want to filter I selected the button and am getting runtime error of Method of ExecuteMso... failed?
 
There might be a Library Reference missing. I'll see if I can find which one.
 
After selecting the field I want to filter I selected the button and am getting runtime error of Method of ExecuteMso... failed?
This worked for me:
  1. Set the focus to the form and control first:
  2. Forms![FormName]![ControlName].SetFocus
  3. DoCmd.RunCommand acCmdFilterMenu
 

Users who are viewing this thread

Back
Top Bottom