Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Row Header For Cross Tab Report In Crystal Reports

I have designed one crystal cross tab report.it is displaying like this

       col1 col2 col3

row1 row11 val1 val2 val3

row2 row21 val1 val2 val3

but i want heading for the row also i.e. i want report like this

name1 name2 col1 col2 col3

row1 row11 val1 val2 val3

row2 row21 val1 val2 val3

can any one help?

like image 683
Jijo V Mathew Avatar asked Sep 28 '11 18:09

Jijo V Mathew


2 Answers

Ryans solution only works for the first page, but he is on the right track.

This solution works for all pages

Crosstab with headers above the rows on each page

1) The crosstab needs to be in its own group section header.

2) you need to have 2 page header sections.

Section 2 (page header a) contains all the text you want to appear on each page including the row header. In my case i have the row headers "Table Curr MinBet"

Section 2 (page header a) needs to have the "Underlay Following sections" checkbox checked from Section expert. This makes CR display the page header section underneath the crosstab.

3) PageHeaderSection2 (page header b) is used to space the crosstab to the right position. Without this, the page header and row header appear underneath the crosstab report rather than above it.

I am running CR version 13_0_1 for visual studio 2010

like image 156
Anton Avatar answered Oct 25 '22 00:10

Anton


You can just overlay a text object as the heading.

Like this

like image 27
Ryan Avatar answered Oct 25 '22 01:10

Ryan