Print "inherit page" on the report to open the next page"

Source: Internet
Author: User

When printing an account book, you generally need to add "start page" or "go to next page" at the end of the page, and add "inherit page" or "inherit page" at the top of the page. The implementation steps are as follows:

1. Create two formula fields first:
Godown:
If totalpagecount = 1 then
False
Else if pagenumber = totalpagecount then
False
Else
True

Goup:
If totalpagecount = 1 then
False
Else if pagenumber> 1 and pagenumber <= totalpagecount then
True
Else
False

2. Place a text box on the top of the report, and enter "inherit page". Right-click the page and choose [format text...].
Click the formula button next to suppress (Suppress display) and enter:
If {@ goup} = false then
True
Else
False

3. Place a text box at the end of the report page, write: "", right-click, and select [format text...],
Click the formula button next to suppress (Suppress display) and enter:
If {@ godown} = false then
True
Else
False

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.