Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Detail info on Group Footer

Status
Not open for further replies.

angelaowb

IS-IT--Management
Sep 5, 2003
6
Is there a way to display a field from the first record of a group on a group footer as well as a field from the last record of a group on a group footer?
 
Sure, create a formula to collect the value in the group footer, such as:

whileprintingrecords;
StringVar FirstValue:= {table.field}

Now in the group footer use:

whileprintingrecords;
StringVar FirstValue

For the last value just reference the {table.field} within the group footer.

So if you wanted it to display the entire range in a formula in the group footer, use:

whileprintingrecords;
StringVar FirstValue;
"For the range: "+FirstValue+" - "+{table.field}

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top