I have a subreport which is running off my main report page and screwing up.
The subreport is based on a simple select from a table which a numeric column in:
12345
34567
22344
55667
55656
78877
..etc..
But there are hundreds of rows in the table so they run off the report. Is there an easy way to output the contents of this column into my subreport so it comes out as a comma seperated list, e.g.
12345, 34567, 22344, 55667, 55656, 78877
The source of the subreport is currently a simple SELECT column1 FROM table1 which gives a list of everything in the column.
The subreport is based on a simple select from a table which a numeric column in:
12345
34567
22344
55667
55656
78877
..etc..
But there are hundreds of rows in the table so they run off the report. Is there an easy way to output the contents of this column into my subreport so it comes out as a comma seperated list, e.g.
12345, 34567, 22344, 55667, 55656, 78877
The source of the subreport is currently a simple SELECT column1 FROM table1 which gives a list of everything in the column.