Tuesday, February 21, 2012

Report Header

Hi,
How can I have a report header (not page header) for my report ?
Thanks,
AlanHI,
Just place all your header information in a rectangle an make this rectangle
only visible if the Globals!PageNumber equals 1. This will only show the
header on the first page. For an report footer you can use Globals!TotalPages.
So visibility will be:
=IIF(Globals!PageNumber=1, False, True)
The odd thing about the visibility property is that you actually set the
hidden property. Also you must know that with the visibility set to an
expression the pagebreaks don't work.
Jan Pieter Posthuma
"A.M" wrote:
> Hi,
> How can I have a report header (not page header) for my report ?
> Thanks,
> Alan
>
>|||Thank you Jan. That helped me.
"Jan Pieter Posthuma" <JanPieterPosthuma@.discussions.microsoft.com> wrote in
message news:BA7C0C1E-E8E0-45CA-8E56-27626FD79020@.microsoft.com...
> HI,
> Just place all your header information in a rectangle an make this
> rectangle
> only visible if the Globals!PageNumber equals 1. This will only show the
> header on the first page. For an report footer you can use
> Globals!TotalPages.
> So visibility will be:
> =IIF(Globals!PageNumber=1, False, True)
> The odd thing about the visibility property is that you actually set the
> hidden property. Also you must know that with the visibility set to an
> expression the pagebreaks don't work.
> Jan Pieter Posthuma
>
> "A.M" wrote:
>> Hi,
>> How can I have a report header (not page header) for my report ?
>> Thanks,
>> Alan
>>

No comments:

Post a Comment