Invoice Report Footer

G

Guest

Hi

I have created an invoice in my database using a report which works fine,
however I want the totals (which are in the report footer) to appear at the
bottom of the last page rather than at the end of the detail section.
Is there a way I can force the report footer to appear at the bottom of the
page rather than straight after the end of the detail section
 
G

Guest

richard said:
Hi

I have created an invoice in my database using a report which works fine,
however I want the totals (which are in the report footer) to appear at
the bottom of the last page rather than at the end of the detail section.
Is there a way I can force the report footer to appear at the bottom of
the page rather than straight after the end of the detail section

Hi Richard,

I had the very same problem some years ago. The way I solved it is to put
the totals in the page footer. Doing so will put partial totals on every
pages and the real total on the last page. To prevent the totals to appear
on any pages except the last one you can use this formula in data field :

=iif([pages] = [page];Sum(ItemCost);null)

"pages" is the number of pages in the reports while page is the number of
the "page" currently printed.

Mathieu Pagé
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top