Sherman6789
Programmer
I have a database where one of the fields lists Point of Contact (POC) names. There can be from one to four names in the POC field and they are separated commas. I have already made several types of reports. The only one which is giving me trouble is the report that is in order by "Points of Contact" names from the same field. How can I make this report which groups all of the records that list contacts in order. Duplicates are acceptable.
EXAMPLE:
SAMPLE DATABASE WITH THREE FIELDS
Rec. ITEM Contact Name(s)
1. A John
2. D John, Beverly
3. T David, Patricia, Beverly
4. M Beverly
5. P David, Patricia, Beverly, John
SAMPLE EXPECTED REPORT (by Contact Names)
****************
BEVERLY
2 D
3 T
4 M
5 P
****************
DAVID
3 T
5 P
****************
JOHN
1 A
2 D
5 P
****************
PATRICIA
3 T
5 P
****************
Partial Solutions?
1. Make a table of all Contacts and somehow use it to search for records containing the names anywhere in the POC field.
2. Divide the contact list into four fields to make it easier to search somehow.
I will appreciate any help. thanks.
WRSherman
EXAMPLE:
SAMPLE DATABASE WITH THREE FIELDS
Rec. ITEM Contact Name(s)
1. A John
2. D John, Beverly
3. T David, Patricia, Beverly
4. M Beverly
5. P David, Patricia, Beverly, John
SAMPLE EXPECTED REPORT (by Contact Names)
****************
BEVERLY
2 D
3 T
4 M
5 P
****************
DAVID
3 T
5 P
****************
JOHN
1 A
2 D
5 P
****************
PATRICIA
3 T
5 P
****************
Partial Solutions?
1. Make a table of all Contacts and somehow use it to search for records containing the names anywhere in the POC field.
2. Divide the contact list into four fields to make it easier to search somehow.
I will appreciate any help. thanks.
WRSherman