SSRS – Show Fields Only On First Page

To show a field only on the first page of a report, go to the field properties and select <Expression…>: Then enter the following expression – this will check if the page number is 1, and if so, display the field: =iif(Globals!PageNumber = 1, FALSE, TRUE)