reportingservices-2005

how to subtract adjacent columns in an ssrs matrix

大憨熊 提交于 2019-12-02 10:03:22
问题 I have an ssrs matrix which looks like the one below : Month(Columns) Product(Rows) Sales(Data) The output looks something like this : June July August Sept Oct ABC 34 34 23 22 67 DEF 33 21 32 22 14 I want an output that looks like this : June July June-July Aug July-Aug Sept Aug-Sept Oct Sept-Oct ABC 34 34 0 23 11 22 1 67 45 DEF 33 21 12 32 11 22 10 14 8 I tried doing something like this : Month(Columns) Change Product(Rows) Sales(Data) Expression The expression looks something like this :

Multiple value selection and optional filter in SSRS 2005 report

非 Y 不嫁゛ 提交于 2019-12-02 09:51:12
I had done a fair share of research before asking this here. Firstly, i would like to create a drop-down filter @accessVar with the ability to select multiple values. It would be easy if not due to my special requirement. My dataset statement is: SELECT PASS_M, ENTRY_DT, EXIT_DT, WORKED_HRS, ACCESS_LOCATION_X, IC_N, COMPANY_M, CONSECUTIVE_D FROM TEMP_TARGET WHERE (CONSECUTIVE_D >= @consecDays) AND (ENTRY_DT BETWEEN @startDate AND @endDate) AND (ACCESS_LOCATION_X LIKE @accessVar) AND (IC_N LIKE @icVAr) However i need to make use the %wildcard for @accessVar(e.g 'BT%') hence i am unable to use

Login failed for user 'NT AUTHORITY\\ANONYMOUS LOGON'

孤者浪人 提交于 2019-12-02 06:54:37
why this error comes? I am using windows authentication. But i am getting error Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON' can any one help me in this how to solve this problem? Most likely it means you're trying to connect from an impersonated context and you did not set up constrained delegation. See Manage Kerberos Authentication Issues in a Reporting Services Environment for details and troubleshooting. Anonymous First of all, I always prefer to use the 'impersonation' settings in the ISS configuration that do not set the user/password in the web.config. Everything was fine in

SSRS 2005 export to csv - I don't want the header?

回眸只為那壹抹淺笑 提交于 2019-12-02 04:58:04
问题 Currently my SSRS 2005 server is exporting the names of the textboxes as the header when a report is exported to CSV. I've tried changing the device information settings in the rsreportserver.config file: <Extension Name="CSV" Type="Microsoft.ReportingServices.Rendering.CsvRenderer.CsvReport,Microsoft.ReportingServices.CsvRendering"> <configuration> <DeviceInfo> <NoHeader>true</NoHeader> </DeviceInfo> </configuration> </Extension> After re-starting Reporting Services, I'm still getting the

how to subtract adjacent columns in an ssrs matrix

感情迁移 提交于 2019-12-02 04:19:21
I have an ssrs matrix which looks like the one below : Month(Columns) Product(Rows) Sales(Data) The output looks something like this : June July August Sept Oct ABC 34 34 23 22 67 DEF 33 21 32 22 14 I want an output that looks like this : June July June-July Aug July-Aug Sept Aug-Sept Oct Sept-Oct ABC 34 34 0 23 11 22 1 67 45 DEF 33 21 12 32 11 22 10 14 8 I tried doing something like this : Month(Columns) Change Product(Rows) Sales(Data) Expression The expression looks something like this : =Sum(IIF(Fields!MONTH.Value=Fields!MONTH.Value,Fields!Products.Value,Nothing))- Sum(IIF(Fields!MONTH

SQL 2005 Reporting Services if check for null

若如初见. 提交于 2019-12-01 18:07:04
问题 In SSRS 2005 I have a table with a dataset linked to it. I want to check if the value of a field is null and if it is not null then format the data to make sure it has one decimal place and add a % sign etc. This is my expression on the field/column: =iif(IsNothing(Fields!COL01.Value), "" ,Format(CDbl(Trim(Replace(Fields!COL01.Value, "%", ""))), "N1") + "%") It doesn't seem to work though when the data is null (It works fine if there is data). The report displays but the field shows up as

Manage timeouts in the Reporting Services 2005

主宰稳场 提交于 2019-12-01 10:27:49
There're some problem. I have a report which is executed long time. When the one hour passes "The page cannot be displayed" error is appear. I think it's smth. with timeout settings. This settings had been increased: C:\Program Files\Microsoft SQL Server\MSSQL.2\ReportingServices\ReportManager\Web.config C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\ReportServer\Web.config <httpRuntime executionTimeout=" 18000 "/> C:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\ReportServer\rsreportserver.config <Add Key="SQLCommandTimeoutSeconds" Value=" 18000 "/> <Add Key=

Returning back to the original report via a return link button in the linked report with multiselect params in the main report

为君一笑 提交于 2019-12-01 06:47:11
I am working with ssrs reports. I have a summary and a detailed report. The detailed report is linked to the summary report. Now the user wants to have a "Return to Summary Report" link in the detailed report. My main problem is I have multiselect parameters in the Summary report. I know the solution if I have single select parameters. In that case I can create a textbox with text decorated as link button and in the Action property of the textbox I choose Jump to report and provide paramaters which I get from the previous report. This method works for single select parameters in the summary

Returning back to the original report via a return link button in the linked report with multiselect params in the main report

女生的网名这么多〃 提交于 2019-12-01 04:19:48
问题 I am working with ssrs reports. I have a summary and a detailed report. The detailed report is linked to the summary report. Now the user wants to have a "Return to Summary Report" link in the detailed report. My main problem is I have multiselect parameters in the Summary report. I know the solution if I have single select parameters. In that case I can create a textbox with text decorated as link button and in the Action property of the textbox I choose Jump to report and provide paramaters

SSRS: Showing the correct execution time on a two page report?

穿精又带淫゛_ 提交于 2019-11-30 19:59:47
I'm just wondering how I can show the correct execution time on a report? Until recently I had been using the following in the footer of my reports as a label expression: ="Execution Time: " + IIf(System.DateTime.Now.Subtract(Globals!ExecutionTime).TotalSeconds < 1, "0 seconds", ( IIf(System.DateTime.Now.Subtract(Globals!ExecutionTime).Hours > 0, System.DateTime.Now.Subtract(Globals!ExecutionTime).Hours & " hour(s), ", "") + IIf(System.DateTime.Now.Subtract(Globals!ExecutionTime).Minutes > 0, System.DateTime.Now.Subtract(Globals!ExecutionTime).Minutes & " minute(s), ", "") + IIf(System