Page 1 of 1

Newbie Question: How to get a layout like this:

Posted: Mon Oct 26, 2009 3:55 am
by Thijs
Hi,

I need to create a report for a customer that has a specific layout: The layout should put groups and data on the same line. Now when I group the group is always placed above the data. Now I have stuff like this:

Code: Select all

Group 1
      Group 2
           Group 3
                   Data
But I need to get it like this:

Code: Select all

Group 1   Group 2   Group 3  Data
How can I achieve this?

Thank you for your answer.

Kind regards,
thijs

Newbie Question: How to get a layout like this:

Posted: Mon Oct 26, 2009 5:08 am
by Edward
Hi

Please use the following steps:

Place a DataBand in the page and set CountData=1.
Then place a CrossGroupHeader component with appropriate condition in it and a text box in that Cross Group Header with a text you need to display.
Place in the DataBand after Cross Group Header a DataBand and set its Width to zero (if you need to display only information about groups).

Thank you.