Want to have your SSRS report show on a single page without any page breaks?
The way to do this is click on empty space of your report and then in the properties window select the interactive size and set it to '0'
If you find this article useful please leave me a comment or click on an ad to show your support.
Showing posts with label Reporting. Show all posts
Showing posts with label Reporting. Show all posts
Thursday, March 28, 2013
SSRS - Display interactive report on one single page
Thursday, August 23, 2012
SSRS SQL Server Reporting Services Export As JPEG (JPG)
I noticed that SSRS for SQL 2008 R2 was missing the option to export in JPEG formats. The reason for this is that JPEG formats don't and will not support Multi-page reports.
however If you are just exporting a nice simple graphic you can add support for exporting the JPEG formats.
If you find this article useful please leave me a comment or click on an ad to show your support.
however If you are just exporting a nice simple graphic you can add support for exporting the JPEG formats.
- Logon to the SSRS reporting server
- Locate the rsreportserver.config and edit it
- Under the Configuration/Extensions/Render section
- Add
<Extension Name="IMAGE (JPEG)" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRenderer,Microsoft.ReportingServices.ImageRendering">
<OverrideNames>
<Name Language="en-US">Image (JPEG)</Name>
</OverrideNames>
<Configuration>
<DeviceInfo>
<OutputFormat>JPEG</OutputFormat>
</DeviceInfo>
</Configuration>
</Extension>
- Restart the SQL reporting service
For more information see this thread on social technet
If you find this article useful please leave me a comment or click on an ad to show your support.
Subscribe to:
Posts
(
Atom
)
