We would like to have a SSRS report open up in an Excel spreadsheet within the SSRS environment rather than exporting it from the SSRS environment to Excel. Is this possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can take the report's URL and append &rs:Format=EXCEL on it. This will give you the report in Excel. The possibilities here are that you can write a small app that generated the URL you want with the parameter settings you want which then you can use Response.Redirect(url) to open it. Besides that, you can write a more comprehensive application that simulates SSRS' parameter interface using SSRS Soap services framework. I'm actually 2/3 of the way done with doing this very thing and it works nicely. |
|||
|
|