thatgirlinMS
Programmer
I have a database that looks like below.
Client ID Eff Date Code Type Code
1 01/01/2010 I 193.3
1 01/02/2010 I 200.5
1 10/13/2009 III 120.8
2 01/01/2010 I 193.3
3 01/02/2010 I 200.5
3 10/13/2009 III 120.8
I am grouping by client ID (which is not the issue) but I need to fill in fields in the group footer with the database row values. How can I do that?
I need my data to show as
code 1 code 2 code 3 code 4 code 5 code 6
They all need to be seperate fields so they export correctly, meaning I can't accumulate the data and push it to a text box in a dlimited format.
Any help? Did I give you enough info?
I need to fill as many fields/report boxes as I can with database values - would some type of an array work? I know I can have UP TO 17 values, no more.
Thanks in advance!
Client ID Eff Date Code Type Code
1 01/01/2010 I 193.3
1 01/02/2010 I 200.5
1 10/13/2009 III 120.8
2 01/01/2010 I 193.3
3 01/02/2010 I 200.5
3 10/13/2009 III 120.8
I am grouping by client ID (which is not the issue) but I need to fill in fields in the group footer with the database row values. How can I do that?
I need my data to show as
code 1 code 2 code 3 code 4 code 5 code 6
They all need to be seperate fields so they export correctly, meaning I can't accumulate the data and push it to a text box in a dlimited format.
Any help? Did I give you enough info?
I need to fill as many fields/report boxes as I can with database values - would some type of an array work? I know I can have UP TO 17 values, no more.
Thanks in advance!