reporting-services

Reporting Services 2005: Attempt to export to Excel gives “Object reference not set to an instance of an object.” error

百般思念 提交于 2019-12-12 19:14:16
问题 I have a moderately complex report consisting of a lot of subreports. One particular one is causing an issue: if you run it standalone, it works fine. If you integrate it as a subreport, it refuses to allow you to export to Excel format (from Preview), with the following error: An error occurred during local report processing. An error occurred during rendering of the report. An error occurred during rendering of the report. Object reference not set to an instance of an object. Producing to

How to develop client side SSRS report using Reports Builder 3.0 and embed in ReportViewer?

无人久伴 提交于 2019-12-12 19:10:56
问题 Sorry for being a newbie to SSRS. My design goal: Near term: develop - using SSRS - a simple client side (no reporting server!) report - based on MS SQL data tables, and embed it into the .NET WPF client (application) Long term: for additional reports, hire external SSRS experts, so they will provide the reports developed, and I will integrate them into the same WPF application. I managed to do 2 things: Develop a simple report connecting to MS SQL, using Reports Builder 3.0 - as a result, an

How to get all SSRS Subscription Data using stored procedure?

走远了吗. 提交于 2019-12-12 18:23:34
问题 I am new to ssrs. I want to get all the possible data for ssrs subscribed report, which are Available in ResportServer database. I have found some queries, but that does not have proper data. It only works for single report. I need list of unique subscription with it's data. If possible stored procedure is preferable. My query: SELECT b.name AS JobName , e.name , e.path , d.description , a.SubscriptionID , laststatus , eventtype , LastRunTime , date_created , date_modified FROM ReportServer

SSRS divide by zero error expression

删除回忆录丶 提交于 2019-12-12 17:18:06
问题 Hope your well. I am working on a report and seem to get a #error. Seems like it is a divide by zero error but I can not work out a solution. The expression: =( Sum(Fields!Line_Sell.Value) - Sum(Fields!Line_Cost.Value) ) / Sum(Fields!Line_Sell.Value) I am relatively new to RS but have tried ISNULL( ) but with no success. Any help, I would be greatful. Thanks 回答1: Let's say you have an expression set to x / y, where y has the potential to be zero. As you experienced, SSRS will change this

SSRS - Auto Refresh of the Data Set Fields

混江龙づ霸主 提交于 2019-12-12 16:27:38
问题 We have about 90 Report Builder Reports built by power users. These reports are built off the 20 odd Base reporting tables. Once in a while we add new fields to these reporting tables. The challenge here is to automatically refresh the Datasets in Report Builder (SSRS) without having to go through each report to manually refresh data on the data set. Since SSRS processes these reports with FMTONLY ON is there a way to automate this process dynamically. Thanks 回答1: So, I think you should use

Authenticating against ReportExecution2005.asmx in .NET Core

梦想与她 提交于 2019-12-12 16:23:54
问题 I'm trying to execute an SSRS report in .NET Core. Since .NET Core doesn't let you add service references, you have to use the WCF Connected Service to add a reference to the WSDL so it can generate .NET Core compatible code. This is what I did for ReportExecution2005.asmx (SQL Server 2016 if it matters). I tried using the following to authenticate against the service: var rsExec = new ReportExecutionServiceSoapClient(ReportExecutionServiceSoapClient.EndpointConfiguration

SSDT-BI For the Visual Studio 2015

回眸只為那壹抹淺笑 提交于 2019-12-12 16:07:36
问题 I am using visual studio 2015 , my project is having SSRS Reports Previously project was in the 2012 and everything was working .when I upgrade my project to 2015 it is showing Reporting is Incompatible . Till now i have installed SSDT For VS2015 but i am not able to find SSDT-BI For Reports. where i will get the BI For the Vs-2015 for download Thank you. 回答1: Download the SSDT from the Below link Link SSDT it will update the SSRS and SSIS on the Visual studio 2015 but you need internet

Why aren't my charts in SSRS 2012 displaying?

随声附和 提交于 2019-12-12 15:11:54
问题 I recently moved several reports over to a new server. Everything works fine displaying tables and data, but charts are not displaying properly. It looks like the image is not rendering properly. My initial thought was that this was a permissions issue, specifically that the service account used to run SSRS needed permissions to a certain folder on the server that is used to generated chart images, but I can not find anything about this in searching for a solution. This happens with old

Send email with multiple attachment report in PDF through SQL Reporting Services

痞子三分冷 提交于 2019-12-12 15:09:05
问题 I am using SQL 2008 Reporting Services. I am opening the report in browser after setting the parameters from application. I create subscription of report from code, which sends email along with attachment in PDF. But I want to create subscription of multiple reports from code and one email should send to client along with multiple PDF attachments. (Note: no need to send email against each subscription) I tried myself but not find any solution. Could you please guide me that how can I send

SSRS - How to make IIF statement ignore invalid values

寵の児 提交于 2019-12-12 14:05:24
问题 I am creating a table in SSRS with Business Intelligence 2008. I have a date, as a string, as one of the values used in the table. This value may have a string representing a date, OR it could also be blank. If it has a value, I want the value formatted in a different way. Right now, I have this expression for the cell in which it is displayed: =IIf(Fields!MyDate.Value = Nothing, "", Format(CDate(Fields!MyDate.Value), "dd-MM-yyyy")) This works perfectly if the field has a value. However, when