ssrs 2008 logo at bottom of page

  • In an existing ssrs 2008, I am going to add an image (logo) to the page footer since I want the logo to appear on the bottom of the report.

    The problem is, the report is setup to go to 2 pages. I basically only want the page footer on the first page. Can this be accomplished? If so, can you tell me how to have the page footer display only on the first of 2 pages?

  • dianerstein 8713 - Friday, June 2, 2017 11:23 AM

    In an existing ssrs 2008, I am going to add an image (logo) to the page footer since I want the logo to appear on the bottom of the report.

    The problem is, the report is setup to go to 2 pages. I basically only want the page footer on the first page. Can this be accomplished? If so, can you tell me how to have the page footer display only on the first of 2 pages?

    I don't think you can toggle the page footer visibility based on page number. But you could play around with adding a rectangle for the image to the footer and then set the visibility of the rectangle to an expression using the page number. So the visibility property of the rectangle would use the expression:
    =IIF(Globals!PageNumber = 1, FALSE, TRUE)
    Sue

  • I did something like you suggested using the images property. The problem is that this is a 2 page letter sent to students. The first page is the letter and the second page is the mailing address that is suppose to print on the back side of the same paper. The paper is to be folded in half so that it is mailed out.
    is there a way to check for page numbers that are even or odd? Basically every other page would need to have the footer logo.
    would you let me know if this is possible? If so, would you show me how to accomplish this goal?

  • is there a way to check for page numbers that are even or odd?
    MOD() ?
    =IIF(Globals!PageNumber MOD 2 = 0, "Even", "Odd")

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply