Friday, March 9, 2012

How to add comment which only appears on the first page of the report?

Hi, experts,

How can we add comment which only appears on the first page of the report?

I am looking forward to hearing from you for your help and thanks a lot in advance.

With kindest regards,

Yours sincerely,

Two methods:

The simplest method is to simply put a textbox in the body of the report above and outside any data regions with only the text of your comment.

Alternately, you can add a textbox in the page header or footer sections containing the following expression:

=IIf(Globals!PageNumber = 1, "This is a comment", "")

If you want a comment to appear on the last page, you could add a textbox containing this to the header or footer sections:

=IIf(Globals!PageNumber = Globals!TotalPages, "This is a comment", "")
|||

Hi, Bryan,

Thanks a lot for that. It's been very helpful.

With kindest regards,

Yours sincerely,

No comments:

Post a Comment