Microsoft
Software
Hardware
Network
Question : Filter form via dropdown menu
I have a form (well a series of forms but I will start with just one) that contains records. One of the fields of the records is a status one. The actual field is based off its own table. What I want to do is have a dropdown menu in the header of the form (a multirecord form) that will filter it based on the selection in the drop down menu. An option to clear the filter would be nice as well.
I know that I can do this from the controls in Access but I would really like this functionality so the end user for the database has that option.
Answer : Filter form via dropdown menu
on change event of the combo box
me.filter="Status=" & me.MyCombo
me.filteron = true
and create a button to clear, and in onclick do this
me.filteron = false
Random Solutions
How do I filter a combo box based on another combo box in a subform?
Create Table on the fly for BULK Insert
Earliest and latest times each day - mdb query
SBS 2008 / Exchange Server 2007/Outlook 2007 Sync Error 0X80072F06 - Offline Address Book
Can't see hidden files
FltMgr will not load in windows 2000 server
Getting wav files to play over RDP
MYSQL query syntax, subquery joins alias
Best recomended anti virus for Windows 2003 server operating sytem
Groupby in a recordset in a Access VBA code module.