reporting-services

How can I execute an .rdl report with a Report Viewer control without an SSRS server?

拈花ヽ惹草 提交于 2019-12-10 18:56:46
问题 I'm trying to set up a web page where users can select an .rdl file to run, and it will open a Report Viewer control (ASPX), load the report definition file, run it, and display the report. So far, what I've found is, "local" reports can only accept data sources from code (so you have to execute the database code manually, which would be a pain since the datasource can vary widely between reports), and "remote" reports require an SSRS server, something I am unable to set up. What puzzles me

“Unable to determine the spatial data type in the specified dataset field…” using the map layer wizard

不打扰是莪最后的温柔 提交于 2019-12-10 18:48:00
问题 I'm using the map layer wizard for the first time in SSRS so we can add spatial data to the map. We get this error from the wizard: Unable to determine the spatial data type in the specified dataset field... The data type for the spatial data is geography. The spatial data looks like this when executed in the Query Designer: POINT (2.41866741166689 48.9082239283949) POINT (1.92902094274567 47.9294603618455) POINT (2.25244361602031 48.9619440062058) POINT (1.91174331024445 47.9109595746068)

Freeze Column Headers in excel after export from ssrs

橙三吉。 提交于 2019-12-10 18:38:49
问题 I have created a report and now I need to freeze tablix header. I tried all the ways related to freeze panes in SSRS, but after export to excel, the freeze pane is not working. Do you know any way to achieve this in SSRS 2016? Below are the steps that I've tried: Select the tabix and click on Tablix properties. In the General tab under Column Headers section you can see "Keep header visible while scrolling" checkbox, check it. Now the header row will be remain fixed in the report. OR In the

Creating SSRS report when data is in SharePoint server

回眸只為那壹抹淺笑 提交于 2019-12-10 18:20:38
问题 I have some records in SharePoint server. I have to create some reports using SSRS. I am little bit confuse that I used SharePoint list for creating reports or I used separate database for creating SSRS report. Please let me know which one is best way for creating SSRS report, using SharePoint list or using separate SQL Server database. Thanks. 回答1: If you're dealing with relatively small datasets, it's probably fine to get data from SharePoint lists but this is not supported directly until

Culture of thread for method render of LocalReport

為{幸葍}努か 提交于 2019-12-10 18:08:44
问题 I'm using a localreport object into an asp.net application. This report is fed by an array of object. So on the render of the report, some properties of the classe are called. Class ClassForReport { string Date { get{return _aDate.ToshortDateString();} } } Now the code for rendering and the problem: //first of all, I change de culture for taking in account the choice of the user CultureInfo ci = CultureInfo.CreateSpecificCulture(isoLanguageName_); Thread.CurrentThread.CurrentCulture = ci;

Conditionally removing a grouping in reporting services

好久不见. 提交于 2019-12-10 17:47:54
问题 I have a report that is displayed with a grouping per location. For example, I have stores grouped by geographic regions. I would like conditionally to remove the group so that, instead of being grouped by regions, all the stores are simply listed alphabetically. Is this possible? The regions are in a group and the stores are in a detail group. 回答1: In the control with the grouping, you simply make the grouping conditional on something, usually on a parameter. And also change visibility of

How to insert Excel formula to cell in Report Builder 3.0?

心不动则不痛 提交于 2019-12-10 17:28:51
问题 There is RDL report template for SQL Server Reporting Services. I need to set value for cell in table in the report template which must be calculated from other values in the report. When the report is exported to Excel file I need to see the Excel formula in that cell. Example: 1) Sample report template with three columns table. First cell must be sum of second and third: 2) I set expression for first column to reproduce excel formula in output report: 3) When report was exported to Excel

User defined reports with SSRS

最后都变了- 提交于 2019-12-10 17:26:32
问题 I have an web application which serves SQL reporting services reports via the reportviewer control. Because of the complexity of some of the reports I use rdlc reports attached to business objects. Now I would like to expand the system and allow some form of user-defined reports. Ideally I would like the users to connect their reports to the same business objects I use to create the rdlc reports. Is there a control that allows users to create/edit their own rdlc files? Can rdl files be

How to allow blank values for multitple parameters

不羁的心 提交于 2019-12-10 17:19:51
问题 I have multiple parameters for a report in SSRS Report Builder. I want all the parameters to allow blank values if no selection is necessary, but when I try to run the Report, the first parameter will allow a null/blank value and it will prompt me for the rest of the parameters. Is there any way around this? 回答1: Set Allow Blank Value (and/or Allow NULL Values ) for all the parameteres. If the Available values are set, make sure your available values for the parameter brings Blank(and/or NULL

SSRS How do I rotate between reports in a slideshow manner?

六月ゝ 毕业季﹏ 提交于 2019-12-10 17:18:31
问题 I have been tasked with creating a dashboard to be displayed on TV monitors. This dashboard has 5 different charts that need to be displayed in a slideshow manner - in other words, one chart at a time, rotating to the next over a timed interval. I used a solution posted on here with the visibility property =IIf(Second(Now()) >= 48 AND Second(Now()) <= 60, False, True) and so on with the report auto-refreshing at 12 second intervals. However, my manager came back to me with the feedback that