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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add to last age for each name

Status
Not open for further replies.

jasonhuibers

Programmer
Sep 12, 2005
290
CA
The report is grouped by LastName. After each name I insert a page break and the page number is reset. I want to put a disclaimer on the last page for each LastName.
I tried the Report Footer and the GroupFooter1 but I keep getting a blank page as my last page. In the report footer the Can Grow option does not work.
I tried Page Footer but I cannot seem to get to display on the last page only for each lastname...

Any ideas?
 
You should be able to use a formula like this:

if onlastrecord or
{table.lastname} <> next({table.lastname}) then
"This is the Disclaimer"

Place this formula in the page footer.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top