reporting-services

Enterprise Reporting Solutions [closed]

偶尔善良 提交于 2019-12-20 08:25:01
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . What options are there in the industry for enterprise reporting? I'm currently using SSRS 2005, and know that there is another version

reporting services - sum tablix column values

谁都会走 提交于 2019-12-20 07:13:19
问题 I have many functions applied to rows in a tablix column. I need to sum all the rows in a tablix column. I am using reporting services 2005, so LOOKUP doesn't exist and I also do not have access to the SQL stored procedure. 回答1: Your question is rather vague, but I'll take a crack at the problem. Let's say that you have a textbox in the tablix column called Textbox5. In a footer row (either a group footer or the tablix footer), you can use an expression like this: =Sum(ReportItems!Textbox5

AZURE Hosting & MVC5 Reporting

吃可爱长大的小学妹 提交于 2019-12-20 07:09:36
问题 I am developing an MVC5/EF6 web application hosted on Azure using Visual Studio 2013. I have just got to the portion of development whereby I need to create the reports. I was trying to use Microsoft.ReportViewer to achieve this and although it works perfectly locally it would appear that the WOW (WAWS) on a standard Azure website does not have/allow enough privileges to generate/return a PDF via a stream reader (http://social.msdn.microsoft.com/Forums/windowsazure/en-US/b4a6eb43-0013-435f

In SSRS, how to create a dynamic 'where' condition using multi value parameters

与世无争的帅哥 提交于 2019-12-20 06:39:51
问题 First I will mention a bit of my work to better understand my question So, in SSRS, I have multiple parameters which all are sent to procedure using =Join(Parameter!x.value,",") then in the procedure I create a where condition by concatenating all the parameters. Something like this: > Set @where = > 'and Table.Column in(''' + replace(RTRIM(LTRIM(@Parameter1)),',', ''',''') > + ''')' + ' > and Table.Column in(''' + replace(RTRIM(LTRIM(@Parameter2)),',', ''',''') > + ''')' + ' > and Table

Multiple value selection and optional filter in SSRS 2005 report

。_饼干妹妹 提交于 2019-12-20 05:52:40
问题 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

MDX SSRS Parameter category chooses all sub category

混江龙づ霸主 提交于 2019-12-20 04:19:59
问题 I have been looking all over stackoverflow for this and I can't figure it out. So I have a dataset using a SSAS cube, and it has two parameters. It has a category and subcategory. I already created the datasets to populate these parameters and they work fine when I select them both. The way my report runs is that it is a collection of subreports in a table and it is grouped by the category and sub grouped by the subcategory. So When I select the category parameter, it lists each sub category

Table of Contents for PDF/Printed Report in SSRS

前提是你 提交于 2019-12-20 04:16:28
问题 Here's what I do know: I know that document maps and bookmarks can be utilized on screen but not in a pdf. SSRS does not have an out of the box ability to generate a printed Table of Contents with Page Numbers to a pdf. I know that a TOC can be generated by exporting the document map to Word. This approach will not work for my situation. Global variables can store page numbers, but they can't be utilized within the report body, only headers and footers. The closest thing I can find is a

Adding values to a Report when there is no Data in query SSRS Between Datasets

血红的双手。 提交于 2019-12-20 04:16:11
问题 It is basically the same question I had in this thread: Adding values to a Report when there is no Data in query SSRS The only difference now is that I want to extend the same functionality to different Datasets. Imagine this: I have two Datasets. Dataset1 , Dataset2 . Both have the same primary key, in this case: Sales Rep Category Now in Dataset1 I have the following Data: The idea in that thread was to put "0" Each time a Sales Representative Did not have all the categories, if you see for

What is the best way to dynamically generate RDLC report definitions at runtime?

余生颓废 提交于 2019-12-20 04:13:46
问题 I have data that will be generated by users at runtime by performing queries. The shape of the data is unknown because users can choose which fields to bring back. The application is an ASP.NET MVC web app. The data will be .NET POCOs. However, each object could have properties that are collections of other objects. I want to use the RDLC format for the reports so that I can leverage the PDF, Excel, Word, etc export functionality. I envisage the data being displayed in a grid, with nested

SQL Server Compact Edition and reporting. Is SSRS an option?

安稳与你 提交于 2019-12-20 03:29:10
问题 I need to create a simple, stand-alone application that will allow for users to input some data and then print a report. I would prefer to use SSRS as a reporting engine but I also want to keep my data store very simple. I have another, sizable smart-client application that uses SQL Server Express edition as a user back-end. From experience, SQL Server Express is certainly an option, however, integrating a database creation and maintenance process is a bit of a nightmare, due to various end