Sql-server – Excel like multi tab report in SSRS

reporting-servicessql serversql-server-2008ssrs-2008

Is there anyway possible to have a SSRS Report that has excel like tab? Bascially a user has many data saved in Excel sheet with many tabs (close to 7-8) with little difference in those tabs. Hence he was looking for to built the report that when exported to excel can bring data in those tabs.

Second Question: When I export the report to excel, is it possible to have predefined filters in excel?

Let me know for any questions.

Thanks!

Best Answer

You can configure the report (2008R2 and up) to break the data up into named tabs when exporting to Excel... Reporting Services export to Excel with Multiple Worksheets

I don't think you can have predefined filters in excel (I'm assuming you mean the Excel Auto-Filter stuff on the data ribbon tab) with the basic export to excel functionality in SSRS. If you go custom (via the ReportViewer control) then you could add logic to update the export file (after exporting) to programmatically add in the filtering options.

Related Topic