MikeCopeland
Programmer
Using CRXI...
I have a number of linked tables in a report, and the data access seems to conflict with my report's needs. 8<{{
T1 T2 T3 T4 T5 T5
Name Goal Date Len Ind Fam
ClientA 1 01/04/07 4 60 0 {set1}
ClientA 2 01/04/07 9 0 0 {set1}
ClientA 1 01/12/07 4 60 0 {set2}
ClientA 2 01/12/07 9 0 0 {set2}
ClientA 1 01/16/07 4 60 0 {set3}
ClientA 2 01/16/07 9 0 0 {set3}
ClientB 1 01/04/07 4 60 0 {set1}
ClientB 2 01/04/07 4 0 60 {set1}
ClientB 1 01/11/07 4 60 0 {set2}
ClientB 2 01/11/07 4 0 0 {set2}
ClientB 1 01/18/07 4 0 0 {set3}
ClientB 2 01/18/07 4 0 60 {set3}
ClientB 1 01/25/07 4 45 0 {set4}
ClientB 2 01/25/07 4 0 0 {set4}
ClientB 1 01/31/07 4 60 0 {set5}
ClientB 2 01/31/07 4 0 0 {set5}
In this example, I have 2 "sets" of client data, and I need to compute and evaluate several things:
1. How many weeks of activity (sets) each client has (3 for ClientA and 5 for ClientB);
2. Calculate a total planned processing for each client, based on T4.Len - but value is to be computed only once for each client;
3. Compute sums of T5.Ind and T5.Fam values, placing these totals in a Group break line;
4. Calculate a value based on T2.Goal for each "set".
My difficulties at this stage are:
(1) knowing how many "sets" (weeks of activities) exist for each client,
(2) how to calculate the planned processing for each client (s/b 180 Ind/0 Fam for ClientA and 300 Ind/300 Fam for ClientB),
(3) NOT duplicate all record processing because there are 2 records/set for each client packet (I suppose this is yet another Group process...but I'm already Grouping by T1.Name, so I don't know if this can be done).
I would expect to see the following results:
Name Ind Fam Plan_Ind Plan_Fam
ClientA 180 0 180 0
ClientB 225 120 300 300
I hope I've explained this well enough... TIA
I have a number of linked tables in a report, and the data access seems to conflict with my report's needs. 8<{{
T1 T2 T3 T4 T5 T5
Name Goal Date Len Ind Fam
ClientA 1 01/04/07 4 60 0 {set1}
ClientA 2 01/04/07 9 0 0 {set1}
ClientA 1 01/12/07 4 60 0 {set2}
ClientA 2 01/12/07 9 0 0 {set2}
ClientA 1 01/16/07 4 60 0 {set3}
ClientA 2 01/16/07 9 0 0 {set3}
ClientB 1 01/04/07 4 60 0 {set1}
ClientB 2 01/04/07 4 0 60 {set1}
ClientB 1 01/11/07 4 60 0 {set2}
ClientB 2 01/11/07 4 0 0 {set2}
ClientB 1 01/18/07 4 0 0 {set3}
ClientB 2 01/18/07 4 0 60 {set3}
ClientB 1 01/25/07 4 45 0 {set4}
ClientB 2 01/25/07 4 0 0 {set4}
ClientB 1 01/31/07 4 60 0 {set5}
ClientB 2 01/31/07 4 0 0 {set5}
In this example, I have 2 "sets" of client data, and I need to compute and evaluate several things:
1. How many weeks of activity (sets) each client has (3 for ClientA and 5 for ClientB);
2. Calculate a total planned processing for each client, based on T4.Len - but value is to be computed only once for each client;
3. Compute sums of T5.Ind and T5.Fam values, placing these totals in a Group break line;
4. Calculate a value based on T2.Goal for each "set".
My difficulties at this stage are:
(1) knowing how many "sets" (weeks of activities) exist for each client,
(2) how to calculate the planned processing for each client (s/b 180 Ind/0 Fam for ClientA and 300 Ind/300 Fam for ClientB),
(3) NOT duplicate all record processing because there are 2 records/set for each client packet (I suppose this is yet another Group process...but I'm already Grouping by T1.Name, so I don't know if this can be done).
I would expect to see the following results:
Name Ind Fam Plan_Ind Plan_Fam
ClientA 180 0 180 0
ClientB 225 120 300 300
I hope I've explained this well enough... TIA