Search results for query: search button to filter form

  1. D

    Dynamic Report based on Current Form Filter

    I am driving myself crazy with this. I have a form with various filters. One is a free-form textbox where you can type in a word or phrase and it will search most of the controls on the form, another is a button that selects all items that have a certain checkbox checked, and another is a...
  2. MajP

    The Most Powerful form Filter and Requires almost No Code

    This is not really a filter/search form. It is a standard continuous form just wrapping the native Access functions in a more user friendly wrapper. So it is whatever limitations are on any Access form. This is a method that does not require developing your own search code and capabilities...
  3. M

    Hide default Add New Record Button ONLY - How?

    Is there any way to keep the standard navigation buttons, but hide the Add New Blank Record button. I know I set Navigation Buttons = No and hide all the buttons, but I would prefer not to do that - it also hides the No Filter and Search buttons, but I could work around that. I have...
  4. C

    Search using and/or

    I currently have a button that launches a msgbox that asks "Which item?" and the user types "Fred", and it opens a report filtered to all the records where a field is like *Fred*.. This works perfectly. However, we now want to have users be able to type in "Fred or Ginger" (or Fred and Ginger)...
  5. T

    Filter Button Not Working

    Hello, I have a database that I have been using for the past 2 years which from this week has started giving some trouble. In the main form there are different categories which before I would use the filter button on the ribbon to narrow searches within a category. However, from this week...
  6. oxicottin

    Solved Export search form data to excel

    I have a continuous form that's a search form and I need to export the data/criteria it populates in the detail section. I pieced together what I thought would work but im getting an error 3075 and debug takes me to DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9...
  7. theDBguy

    Solved How to Export Current Recordset and remove certain fields to Excel (Field/Column Filtering)

    I just gave it a try, and it worked fine for me. You'll have to give me the steps to duplicate the problem. This is what I did. From the Home form, clicked on VIEW PO/INVOICE button From the Search form, clicked on Reset button Right-clicked on SUPPLIER/PAYEE and applied a filter to a single...
  8. P

    Solved Search and find records on a continuous subform

    A simpler solution is to use criteria to filter the subform. Change the recordsource for the subform to: Select.. From ... Where SomeFK = Forms!mainform!SomeFK and (LastName Like "*" & Forms!mainform!subform.Form!txtSearch & "*" OR Forms!mainform!subform.Form!txtSearch Is Null) Then you...
  9. Gasman

    Search while typing Multi Field Search Form in Ms Access

    Yes, but I would have s search button that tells Access when to run your process. That will then check each of those controls and build your criteria. Debug.Print your criteria until you get it correct, so assign that to a variable. Then you can use that as your filter for the subform. You do...
  10. P

    RecordSet vs Recordsource for dynamically binding data

    Welcome to AWS:) Not sure you are not considering bound forms. I bind all my forms and reports to querydef's. Except for very small tables, all the querydef's have selection criteria. Sometimes, there are search options on the form. The user picks or types the values and presses the find...
  11. D

    Dynamic Report based on Current Form Filter

    Darn, I was really hoping this was the issue but they have the same source, called qryAmmo. I am just at a loss. ETA: So I just noticed that when I filter my form using my text box or buttons and then switch to design mode, the Filter property is empty. Shouldn't the filter be stored there? If...
  12. P

    The User Interface

    I also find it impossible to search Amazon for clothing. You'd think boot cut jeans would limit my jean selection to not include any skinny, strait, or wide leg variations but it doesn't. Neither does looking for specific sizes or colors or material. Given that most of my applications...
  13. raziel3

    Solved How to Export Current Recordset and remove certain fields to Excel (Field/Column Filtering)

    The db was a scaled down version. I have to send you one with more records.
  14. S

    hide a record while it's being edited in a form

    Hello everyone! I have this database in order to assign a task to each logged on user. The db is split between be and fe already and everything is on a network drive. Admins import tasks on the main table where there is a 'inUse' boolean column defaulting as false. A query reads a few fields...
  15. C

    Form Search

    I used this tutorial Create a Search Button on your Form in Microsoft Access. Find Button. Filter, FilterOn Properties - Bing video When I search for a course it filters in a list box. (This works) I want to double click on the course I want and in a subform it list all the students registered...
  16. S

    hide a record while it's being edited in a form

    There is no need to reopen the form when the Record is saved. In the underlying record source to the Form, simply filter out those records that are in use. When the User on other FE's click the save but, simply requery the form, or apply a new filter. A lot of resources are wasted to close and...
  17. M

    Solved Search and find records on a continuous subform

    @ Thanks for the suggestion, but this doesn't seem to work. The form loads with no records visible in the subform. Searching for a name in the txtRecordSearch text box only sets the focus to an empty record on the subform. After plugging in the WHERE clause and saving the record, the SQL comes...
  18. MajP

    Buttons to filter form

    FYI to add the other buttons. Copy the existing button and paste it. Make sure to name it properly and it will automatically work. No additional code is needed. The trick to make each button work with one function is described here...
  19. Babycat

    Solved Very weird behavior- Error '3709': The search key not found in any record

    Dear everyone I have been struggling for 3 days to debug but only narrow down some clues... I have a mainform and a continous subform, they act like split form. Main form has button to filter out records on subform, and when user click on a record in subform the main form will show current...
  20. W

    Connect / Import MariaDB table(s) into Access

    All folks, thank you for your suggestions. First of all, I will try to explain what I have done already and what problems I encountered. 1) I have a (Joomla!) website and a web application that maintains a membership table in the Joomal! database 2) I have an Access DB that links, via an ODBC...
Top Bottom