I'm still confused. I think you said that the customers
form opens with the correctly filtered list of customers.
But then you say the problem is to open a form for trips.
I think what you may be looking for is to use a ListBox for
the customers, instead of a separate form. The reason I say
this is because it's easy to select items in a list box, but
a lot more complex to select items in a form (regardless of
how it's displayed). Place the list box on the find form
and make sure it has a Multi-Select capability. The list
box should include the customer table's primary key field,
even if you do not need to see it in the list (ColumnWidths
has a 0 for that field).
Once you get that working, post back with the list box name
and the important field names and we'll try to put together
a query to select the selected trips data.
> I'm still confused. I think you said that the customers
> form opens with the correctly filtered list of customers.
> But then you say the problem is to open a form for trips.
Sorry! The frmCustomers is a form with multiple tabs with
all the information pertinent to each customer 1 record at a
time. Users of this database need to find groups of customers
for different reasons and the frmFind works well for the them
to do work on customer files 1 at a time. They can even print
reports based on these groups.
What I need to do now is generate a list of customers by
specific regions i.e. city, or state, and THEN filter that group by
selecting only certain ones with a check box and give a brief
reason for the visit by a Tech. or Rep. A technician may have to
see 5 of 50 customers in say, New York, NY. He wants a report
with the customers he has to see and remarks to tell him why
he has to go there.
> I think what you may be looking for is to use a ListBox for
> the customers, instead of a separate form. The reason I say
[quoted text clipped - 5 lines]
> even if you do not need to see it in the list (ColumnWidths
> has a 0 for that field).
I think a listBox would be difficult to use given the amount of
customers in all 50 states and some of our customers have
locations in more than 1 state.
The frmFind is based on the tblCustomers. Can I take the results
of my frmFind (or frmFind2) and open another form that has fields
from tblTrips and tblCustomers? That way all customers in 1 area
could be visible to the user and all the user would have to do is
click on the field "Confirmed" next to the customer to visit, type in
a reason for the visit, and print it.
Sorry for the confusion and for making this so difficult. I'm being
asked to make this a "simple, easy to use database" and I'm having
hard time explaining that, this is anything but simple.
Thanks for your continued help!
Marshall Barton - 28 Oct 2005 14:52 GMT
Responses inline below.

Signature
Marsh
MVP [MS Access]
>> I'm still confused. I think you said that the customers
>> form opens with the correctly filtered list of customers.
[quoted text clipped - 6 lines]
>to do work on customer files 1 at a time. They can even print
>reports based on these groups.
Does this mean that the trips form is a subform on a tab
control in the customers form? If so, then you should use
the subform control's Link Master/Child properties to
display the trips for the current customer record.
>What I need to do now is generate a list of customers by
>specific regions i.e. city, or state, and THEN filter that group by
[quoted text clipped - 3 lines]
>with the customers he has to see and remarks to tell him why
>he has to go there.
Is that two questions? If so, go back and separate them so
we can address them one at a time.
If you are still trying to figure out how to select
customers, provide more details about the frmFind controls
that the user enters the criteria and how the check boxes
fit into the scenario.
>> I think what you may be looking for is to use a ListBox for
>> the customers, instead of a separate form. The reason I say
[quoted text clipped - 9 lines]
>customers in all 50 states and some of our customers have
>locations in more than 1 state.
Ok, forget that idea.
>The frmFind is based on the tblCustomers. Can I take the results
>of my frmFind (or frmFind2) and open another form that has fields
>from tblTrips and tblCustomers? That way all customers in 1 area
>could be visible to the user and all the user would have to do is
>click on the field "Confirmed" next to the customer to visit, type in
>a reason for the visit, and print it.
I think there may be two or three questions mixed in there.
What the heck is frmFind2?
What is this other form that has multiple tables???
This "Confirmed" field is a new concept. Is it the
checkbox(es?) you were talking about before? or a button on
the form??, or maybe it's a field in the trips table???