Hello,
i have a Condition in a Textfield and when this Condition is true i want to print the following data on the next page, but i dont know how the command/variable for a new page is.
Could you please tell me the Command/Variable for a new page.
Here a short example what i want:
{Context.Title == "New Page" ? NewPage : Context.Title}
Thank you very much!
Print Report Data on New Page
Re: Print Report Data on New Page
Hello,
You can use the following expression in BeforePrint event:
Thank you.
You can use the following expression in BeforePrint event:
Code: Select all
if (Context.Title == "New Page")
Engine.NewPage();
- Attachments
-
- ReportSample.mrt
- (16.57 KiB) Downloaded 353 times
Re: Print Report Data on New Page
Works very well, thank you very much!
Re: Print Report Data on New Page
Hello,
We are always glad to help you!
We are always glad to help you!