MS Access newbie needs advice!
December 30, 2011 5:55 AM Subscribe
MS Access 2010 Help - I need to create something that allows a small group of people to add records and search records within a database and after much googling I'm thoroughly confused.
For context, the data that we are dealing with is dock times for shipping. Not too many fields, PO number, account number, date and a check mark for if it has been confirmed. I'm having trouble making this work. I can set up to add records however I'm hitting a wall when it comes to searching those records.
Basically I'm looking for resources on the web (or otherwise) or advice specific to the search option. I'd like users (12 max) to be able to search records by one of the fields in the database (most likely PO number). Help?
posted by heavenstobetsy to computers & internet (5 answers total) 2 users marked this as a favorite
Another way, if you are sure this is not going to be a huge database with lots of users, would be to use the wizard to create a form based on a query of the whole dataset (show all records) shows the records in a table-like format, and then create unbound text boxes in the header under each column name. In the "after update" event of each text box, you create a filter for the recordset that uses the contents of the text box to filter the records. I think what this would accomplish would be the drill-down type of search, where a user can open it up and type the relevant data into the empty box in the column of the type of data they want to search for. Then add a double click event procedure on the data portion of the form where double clicking on the right record opens up the "edit PO" form.
posted by gjc at 6:43 AM on December 30, 2011