Page 1 of 1

GroupFooter hides Textboxes

Posted: Mon Jun 04, 2007 6:04 pm
by jamesk
I created a report that has a computed value(i.e. Count or Average) in a Group Footer.

Then I set the Can Shrink property of the computed textbox to True.
When I preview the report, the computed textbox is not displayed.

The only way to make the computed textbox display is to set the Can Shrink property to False.


GroupFooter hides Textboxes

Posted: Tue Jun 05, 2007 12:43 am
by Vital
Please use following expression:

Code: Select all

{Totals.Sum(groupheader1, myexpression)}
instead

Code: Select all

{Sum(myexpression)}
Thank you.