Hi,
I have several tables including one called "Contact Events", one called "Attorneys" and one called "Law Offices". My Contact Events table keeps track of meetings between our employees and one or more attorneys. For instance "Contact Events" has a field with staff ID #s that accepts multiple values, it also has a field with attorney_ID #s that accepts multiple values. The idea being that multiple staff members can have a meeting with multiple attorneys. Information about attorneys is listed in a separate table, including an identifier of the law office the attorney is associated with. This Law office, in turn, has its information in yet another table, including the city in which the office is located.
I now want to create a query that shows the information related to these contact events but also want to incllude a field for "city". What's happening is that cases where our employees met say two attorneys, show up in my query as two lines. Basically I need the City-field in my query to store the cities of all the attorneys in that event. Right now, because my "city" field is associated with a table where multiple entries are not enabled/required/useful, I can't get my query to show it on a single line with multiple values.
Any ideas?