Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: "kev100 via AccessMonster.com" <u16246@uwe>
- Date: Tue, 10 Jan 2006 04:44:32 GMT
Duane Hookom wrote:
>The user running the query will be prompted for first names. They must be
>entered exactly as stored in the first name field and must have a comma
>between each.
>
>BTW: I would never use this solution as it is prone to data entry errors and
>frustrations. I would create a form with a multi-select list box as
>suggested by Tom Ellison very early in this thread.
>
I agree as well, in most cases, however, in this particular application the
"names" will actually be unique numbers between 1 and 3 digits long. A pull-
down option would end up being just a giant list, hundreds of numbers long.
Here's the SQL view of that query.
SELECT results.route
FROM results
WHERE (((results.route)=[Route:]))
ORDER BY results.route;
The table name is "results"
The field that is being querried on is "route"
Currently, the user is prompted to enter the Route name (which is actually a
number) they want to see all records for. However, they can only enter 1
route at a time.
They need to be able to enter 1 or More routes and have the query show all
entered. Seperating each by a comma will not be a problem. Since route
"names" are actually numbers, the chance of entry errors will hopefully be
reduced..
Thanks
--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/access-queries/200601/1
.
- References:
- Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: kev100 via AccessMonster.com
- Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: Duane Hookom
- Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: kev100 via AccessMonster.com
- Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: kev100 via AccessMonster.com
- Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: kev100 via AccessMonster.com
- Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: John Spencer
- Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: kev100 via AccessMonster.com
- Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: Duane Hookom
- Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: kev100 via AccessMonster.com
- Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- From: Duane Hookom
- Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- Prev by Date: Re: criteria characters
- Next by Date: Re: Only retrieving first 50 records?!?
- Previous by thread: Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- Next by thread: Re: Enter MULTIPLE Items in a Query (e.g. [Name:] ??
- Index(es):
Relevant Pages
|