Using the latest version of CR. Driven by VB/SQLserver using ADO/ttx.
Supposing the following recordset is passed to a given report:
1234|Mike|Red
1234|Mike|Blue
1234|Mike|Green
I need to generate a report that prints a single folder label for this information like the following:
1234 Mike
Red, Blue, Green
Where the static information would print on a single report page and the dynamic info (red/blue/green) displays in a list separated by commas.
I know, ideally it would be better to have the passed a recordset to accomodate the data appropriately. Such as,
1234|Mike|Red,Blue,Green.
But thats another group's job to build the sprocs, and it takes time for approval and then development. We need this label quickly and can't wait for that timely process.
Can this be done in CR? If so, can you recommend the needed functions, and where to place what in the given report components (rpt header, pg header, detail, etc)?
Thanks!!
Supposing the following recordset is passed to a given report:
1234|Mike|Red
1234|Mike|Blue
1234|Mike|Green
I need to generate a report that prints a single folder label for this information like the following:
1234 Mike
Red, Blue, Green
Where the static information would print on a single report page and the dynamic info (red/blue/green) displays in a list separated by commas.
I know, ideally it would be better to have the passed a recordset to accomodate the data appropriately. Such as,
1234|Mike|Red,Blue,Green.
But thats another group's job to build the sprocs, and it takes time for approval and then development. We need this label quickly and can't wait for that timely process.
Can this be done in CR? If so, can you recommend the needed functions, and where to place what in the given report components (rpt header, pg header, detail, etc)?
Thanks!!