Export Excel and Chart data into excel - reporting-services

I have created a table(country,city,state,orderid,etc) and i have bar chart with profit for each city in ssrs report.
I want to export the report into excel like:
First sheet should have the table
from 2nd sheet to nth sheet, i want to display each country's data in the table along with bar chart.
eg: in 2nd sheet we need to have India's data in the table and
bar chart should show cities data residing in India.
Thanks

Related

conditional run report SSRS

what I need to complete: My report has a parameter: A or B. When A the report run table A. when B report run table A and table B (but when exported to Excel, table A will show up in sheet1, table B will show up in sheet2).
the problem: when choose parameter to A, the table A run, table B not show but exported to excel, still show sheet2 as a blank page with report header.
So far, I put condition on visibility to table B to conditionally show table B. and change a report properties (ConsumeContainerWhitespace = True)
how to get rid of the extra sheet when only run TableA? thanks.
In the properties for the last Tablix on the report (which is expected to be the last worksheet upon exporting to excel) - set the Page Break > Break Location = None.

SSRS Hyperlink to tab on the same spreadsheet

I have two set of data on 2 tabs of the same report in SSRS
Employee Name, Employee Number, Department ID
Employee Number, Department ID, Department Details
I am trying to create a hyperlink on Department ID of tab 1 to link to Department ID of tab 2 of the same report.
This report should be rendered to excel spreadsheet, where the hyperlink from tab 1 row 1 should take you to details in tab 2 row 2(mapped by department ID)
I tried using the Go to Report feature on SSRS but I don't know how to do it for different sheet on the same report.
I'm not sure if this is supported when rendered to Excel but look at bookmarks.
https://learn.microsoft.com/en-us/sql/reporting-services/report-design/add-a-bookmark-to-a-report-report-builder-and-ssrs

SSRS chart should look like my excel chart

I am doing an SSRS report which needs to have a chart that looks like this
Excel chart
and so far on my ssrs report I have this
SSRS chart
how could I make my ssrs chart the same on my excel chart?
Thank you in advance
First thing is to put all your data together. You want to compare different years with the same date. You'll need to change your date field to just use the month and day:
=FORMAT(FIELDS!YourDateField.Value, "MM-dd")
For the axis label, use the Day of the Week:
=FORMAT(FIELDS!YourDateField.Value, "dw")
For your markers, go to Series Properties->Markers tab and set Marker Type to Auto to let SSRS assign a different type to each. If each year is a different series, you can assign them individually.
You can right-click on an Axis and go to properties to format them to look more like the Excel version.
There's a bit more differences but mostly formatting.

Exporting parent report's subreports into a single Excel sheet?

I'm using SQL2008 R2.
I have a parent report, with a sub-report. The user is prompted for a date and variable number of "areas". For each area selected, that area gets its own page which is the sub-report containing that area's data.
When exporting, each area gets its own sheet.
In SSRS, how can I force the dynamic number of sub-reports into a single Excel sheet on export?
There could be hundreds of sheets generated and I can't expect the user to cut/paste the data into a single sheet every day.
Specific example:
I pick Pittsburgh West and Pittsburgh East, and export. Sheet 1 is Pittsburgh West data, Sheet 2 is Pittsburgh East data.
I want to maintain the headers but have all of the selected area's data on Sheet 1.
In SSRS 2008R2, you can set page breaks to be enabled or disabled based on the format used to render the report.
Typically you would have a table with groups to control page breaks. By clicking on the group and looking at its properties you see there is a PageBreak -> Disabled property. In your case, you would disable this for Excel only:
=IIf(Globals!RenderFormat.Name = "EXCEL", True, False)
Other objects like Rectangles that can control page breaks can be configured the same way.

Export to excel in SSRS

I have 8 reports and when exporting to excel I need all the reports in a single excel sheet.
Eg: Report 1 in sheet 1 of excel
Report 2 in sheet 2 of excel likeewise
Is this possible????
Please help..
Yes, it's a bit fiddly but you can.
If you create an empty report and populate it with sub-report components in rectangles (one for each of the eight reports you wish to generate). Set each rectange to start a new page and this should produce an eight sheet Excel workbook with one tab per report.