Can grow option problem

  • Thread starter Thread starter Roy Goldhammer
  • Start date Start date
R

Roy Goldhammer

Hello there

In many of my reports I have textbox that its size can grow in the Page
header part. This texbox placed at the top of the page header when data
exist under it. If on the same report i have also grouping and the textbox
data is bigger then its normal sides, it push all the object under it down,
but the Grouping header stays on its place. as a result of that the Group
header hides the object who placed on the bottom of the page header.

For example: if on the bottom of the page header i place Label: Client and
the the textbox is growing the Client label become invisible.

Hope i explain the problem correctly, need help
 
Your problem is not your group header. Page headers can't grow. Consider
creating a new primary sorting and grouping level on a constant like:
=1
Display the group header for the =1 level. Set the Repeat Section property
of the =1 header to Yes. Use this =1 group header section in place of your
Page Header.
 
Roy said:
In many of my reports I have textbox that its size can grow in the Page
header part. This texbox placed at the top of the page header when data
exist under it. If on the same report i have also grouping and the textbox
data is bigger then its normal sides, it push all the object under it down,
but the Grouping header stays on its place. as a result of that the Group
header hides the object who placed on the bottom of the page header.

For example: if on the bottom of the page header i place Label: Client and
the the textbox is growing the Client label become invisible.

The label will not be "pushed down" if the top of the label
is above the bottom of the text box. Make the text box
shorter so it's bottom is above the top of the label.

However, since the page header section can not grow, the
label may be pushed off the bottom of the section. Not that
this is different than what you think, the group header is
not covering up the label in the page header.

In some cases, you can set a new top level grouping to a
constant expression such as =1 and use this group's header
instead of the page header by setting the header section's
RepeatSection property to Yes.
 
Back
Top