Billy Logan
Billy Logan

Reputation: 2863

Visual Studio 2008 Crystal Reports - Horizontal Reporting

Is there a way to setup a crystal report horizontally so that I would have my groupings span across instead of vertical?

Upvotes: 2

Views: 2128

Answers (2)

dotjoe
dotjoe

Reputation: 26940

Go to the Details - section expert and check "Format with Multiple Columns". Then you can also include groups in that "Layout" tab that just appeared.

Upvotes: 2

Paul Williams
Paul Williams

Reputation: 17040

To achieve this effect:

Group Header
    Record 1     Record 2    Record 3
    Record 4     Record 5    Record 6

We had to manually organize our data like this:

    Column 1     Column 2    Column 3

And then we assigned numbers (0 to row count - 1) to each record. If the record mod column count was 0, update the first column. If 1, update the second column. Etc.

As far as I know, there is no other way to do it.

Upvotes: 0

Related Questions