My database is essentially a big diary for lots of trainers so we can plan future training dates and record past training. There are a variety of queries we need to run on this data, e.g. look up the activity of a particular trainer during a specific month; look up the percentage of time spent physically in the training room, rather than other BAU tasks; look up the activity of a whole team of trainers for a certain time period...
I want to create a standard set of parameter queries so that my users (who are not familiar with Access) can easily look up information. However, many of the fields in my main table are lookups (e.g. the trainer name field looks up a list of trainers so the user gets a drop-down list to select from) so the data stored in that table are ID numbers (generated through autonumber) rather than the descriptive items my users will understand.
I thought I could get around this by taking the input for my parameter queries via a form. I added the relevant fields to a form (which, as I mentioned, are lookups so appear as drop-down boxes) and included buttons that run the desired query so, for example, my user selects the trainer whose data they wish to view and click a button to run the query. I have just realised that the resulting form is actually editing the data in my table, rather than just selecting from the various lookup options (which now seems pretty obvious given that's what forms are generally for!).
How can I create an interface for my users that allows them to easily select the parameter they want to input into the query?
I want to create a standard set of parameter queries so that my users (who are not familiar with Access) can easily look up information. However, many of the fields in my main table are lookups (e.g. the trainer name field looks up a list of trainers so the user gets a drop-down list to select from) so the data stored in that table are ID numbers (generated through autonumber) rather than the descriptive items my users will understand.
I thought I could get around this by taking the input for my parameter queries via a form. I added the relevant fields to a form (which, as I mentioned, are lookups so appear as drop-down boxes) and included buttons that run the desired query so, for example, my user selects the trainer whose data they wish to view and click a button to run the query. I have just realised that the resulting form is actually editing the data in my table, rather than just selecting from the various lookup options (which now seems pretty obvious given that's what forms are generally for!).
How can I create an interface for my users that allows them to easily select the parameter they want to input into the query?
Comment