damonkimble
MIS
Using Crystal 10 connecting to MS SQL 2000 via ODBC.
I could do the following with subreports but would prefer to not deal with the complexity and the performence hit involved.
The desired group hierarchy is as follows:
child
|
|--appts
|
|--parties
|
|--presents
with incoming data:
ID,child_name,child_birth,doc_name,doc_loc,appt_dt,child_name_bd,child_party_dt,child_pres
2,Billy,7/19/1997,Dr. Smith,125 Main,12/15/2005,Sally,1/3/2006,Books
2,Billy,7/19/1997,Dr. Smith,125 Main,12/15/2005,Sally,1/3/2006,Clothes
2,Billy,7/19/1997,Dr. Smith,125 Main,12/15/2005,George,1/30/2006,Books
2,Billy,7/19/1997,Dr. Jones,811 First,1/17/2006,Sally,1/3/2006,Books
2,Billy,7/19/1997,Dr. Jones,811 First,1/17/2006,Sally,1/3/2006,Clothes
2,Billy,7/19/1997,Dr. Jones,811 First,1/17/2006,George,1/30/2006,Books
with the results in the form:
The first group is obviously based on child (I use child_name & ID), but I'm not really sure where to go next. Any and all help would be appreciated.
thanks as always,
damon
I could do the following with subreports but would prefer to not deal with the complexity and the performence hit involved.
The desired group hierarchy is as follows:
child
|
|--appts
|
|--parties
|
|--presents
with incoming data:
ID,child_name,child_birth,doc_name,doc_loc,appt_dt,child_name_bd,child_party_dt,child_pres
2,Billy,7/19/1997,Dr. Smith,125 Main,12/15/2005,Sally,1/3/2006,Books
2,Billy,7/19/1997,Dr. Smith,125 Main,12/15/2005,Sally,1/3/2006,Clothes
2,Billy,7/19/1997,Dr. Smith,125 Main,12/15/2005,George,1/30/2006,Books
2,Billy,7/19/1997,Dr. Jones,811 First,1/17/2006,Sally,1/3/2006,Books
2,Billy,7/19/1997,Dr. Jones,811 First,1/17/2006,Sally,1/3/2006,Clothes
2,Billy,7/19/1997,Dr. Jones,811 First,1/17/2006,George,1/30/2006,Books
with the results in the form:
Code:
Billy 7/19/1997
Appts Parties
-------------------------------------- ----------------------------------------
12/15/2005 Dr. Smith 125 Main 01/03/2006 Sally
01/17/2006 Dr. Jones 811 First Books
Clothes
01/30/2006 George
Books
The first group is obviously based on child (I use child_name & ID), but I'm not really sure where to go next. Any and all help would be appreciated.
thanks as always,
damon