1

I had designed a report in SSRS the data and the report is displaying fine My problem is that when I export the report to PDF it consumes a White Space on the Top as in the image below SSRS Report Exported as PDF

I had used this link How to get rid of blank pages in PDF exported from SSRS to remove white space below the report

kindly someone guide me how to remove the White Space in the top of the report

Community
  • 1
  • 1
Rajesh
  • 1,600
  • 5
  • 33
  • 59

1 Answers1

3

1.Go to the Report Property in design Mode

2.Go to Page Section and find margin value

margin :2cm, 2cm, 2cm, 2cm

update it to

margin:0.5,0.5,0.5,0.5

or Refer this

How to get rid of blank pages in PDF exported from SSRS

Community
  • 1
  • 1
Manoj
  • 631
  • 4
  • 9
  • I'm not sure if this is the same issue for me, but our is printing white space where the Header would normally be, but only on pages 2..x. In other words, the first page it does print the Header properly, however, we don't want it printing OR taking up the white space on subsequent pages. I've got the ConsumeContainerWhitespace on the properties of the report set to True. – Craig Apr 17 '18 at 15:30
  • try to add some textbox with white space and apply condition of visibility if page no is 1 then visible "false" else "true". – Manoj Apr 19 '18 at 11:59