Newbies Stephen Holmes Posted September 3, 2004 Newbies Posted September 3, 2004 Three tables: Attorney --< AttyClient >-- Client. AttyClient contains just the unique IDs from Attorney and the unique IDs from Client. It exists to handle the many-to-many relationship between Attorneys and Clients. How do I find only those Clients that have more than one Attorney assigned to them? In other words, only those Clients that have more than one related Attorney record. Thanks very much.
Newbies Stephen Holmes Posted September 3, 2004 Author Newbies Posted September 3, 2004 Never mind. figured it out. thanks anyway.
-Queue- Posted September 3, 2004 Posted September 3, 2004 Create a calculation in Client of Count(AttyClient::id) > 1. Perform a find for 1 in this field to find all Clients who have more than one Attorney.
Newbies Stephen Holmes Posted September 3, 2004 Author Newbies Posted September 3, 2004 Argh! I should have thought of that. My much less elegant way was to make a portal to AttyClient, and do a Find duplicates on the unique ID for the client table. Both produced the same results.
Recommended Posts
This topic is 7386 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now