reporting

C# Microsoft.Reporting.Winforms RDLC - how to add detail sections in body?

房东的猫 提交于 2019-12-23 15:58:36
问题 I am rendering a Winforms.LocalReport and would like to know if it is possible, and how to add Detail/Sections to the body of the report like in MS Access Report and Crystal Reports. Organising into details will help manage page breaks and also general designing easier when adding new / removing existing fields. I have 300 over fields not including subreports. OR, has this feature been superceded by some other better feature? Appreciate any advice thanks! 回答1: In tools like access reports and

Add custom info to JBehave HTML report

那年仲夏 提交于 2019-12-23 13:19:16
问题 When generating reports, JBehave automatically puts the story contents into the report, along with possible assertion failures. So far, so good. However, I would like to add some more information, especially (but not necessarily limited to) failing steps. In the concrete case at hand, the test generates random file names to guarantee uniqueness while running the scenario. I would like these names, that are generated in my @Given or @When annotated methods, to be included in the report. I find

RDLC report doesn't detect NULL values correctly

自闭症网瘾萝莉.ら 提交于 2019-12-23 12:06:39
问题 I have a problem with generating .rdlc report. One of the columns has this expression: IIF(CInt(Fields!MyColumn.Value) = 0 or Fields!MyColumn.Value is nothing,"Unknown",Fields!MyColumn.Value) I've also tried to use that field as a string: =IIF(IsNothing(Fields!MyColumn.Value) or Fields!MyColumn.Value is nothing,"Unknown",Fields!MyColumn.Value.ToString()) When the value of MyColumn is not NULL , the report displays the value properly, but when it is NULL (or 0 when it's converted into int type

In SQL, how can I count the number of values in a column and then pivot it so the column becomes the row?

不羁的心 提交于 2019-12-23 09:58:39
问题 I have a survey database with one column for each question and one row for each person who responds. Each question is answered with a value from 1 to 3. Id Quality? Speed? -- ------- ----- 1 3 1 2 2 1 3 2 3 4 3 2 Now, I need to display the results as one row per question, with a column for each response number, and the value in each column being the number of responses that used that answer. Finally, I need to calculate the total score, which is the number of 1's plus two times the number of

Easiest way of porting html table data to readable document

杀马特。学长 韩版系。学妹 提交于 2019-12-23 05:37:09
问题 Ok, For the past 6 months i've been struggeling to build a system that allows user input in form of big sexy textareas(with loads of support for tables,list etc). Pretty much enables the user to input data as if it were word. However when wanting to export all this data I haven't been able to find a working solution... My first step was to try and find a reporting software that did support raw HTML from the data source and render it as normal html, worked perfectly except that the keep

How can I display two rows worth of data on one line side-by-side in Report Designer?

前提是你 提交于 2019-12-23 02:31:53
问题 I am using SQL Server Reporting Services 2005, and I'm developing a report in Report Designer/Business Intelligence Studio. Right now I have a normal-looking table that displays data like this: ---------------- | A | B | C | ---------------- | A1 | B1 | C1 | ---------------- | A2 | B2 | C2 | ---------------- | A3 | B3 | C3 | ---------------- What I would like to do, is display two rows side-by-side on the same line, so that the table would look like this: ------------------------------- | A |

RDLC Medium Trust

99封情书 提交于 2019-12-23 01:14:43
问题 Does anyone know of a free (for a non-profit group) RDLC reporting tool that will work under medium trust in IIS 7? 回答1: Our Data Dynamics Reports product is not free, but we did implement special support for working in the restrictive medium trust environments. I don't know if it is tested on IIS7 yet, but I presume the security policy is the same so it should work in any case. If it does not let us know and we will surely get it working as this is a scenario we explicitly wanted to make

Java Business Intelligence framework with ad-hoc web reporting? [closed]

老子叫甜甜 提交于 2019-12-22 12:27:15
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I need a reporting framework that supports web views with ad-hoc reporting, as well as styled, canned PDF reports. My users will be non-power users, so I'll need to present something usable for the ad-hoc reporting. What's the best current solution in the java world? 回答1: There's a jasper reports plugin for

Integrating Pentaho Reporting web frontend with custom Java/JSF application

◇◆丶佛笑我妖孽 提交于 2019-12-22 11:37:07
问题 I have the following situation: OTLP database schema with data. Database procedures pump data into denormalized, star-schema with defined dimensions and fact tables. The goal is to build web application, which can do summary and drill-down on those defined data structures. I can build custom web interface, but I would prefer to use existing tools for the reporting part. The resulting application must be written in java and integrated with existing solution based on JSF and Pentaho looks like

Cognos 8 Query to find all Report and Column Names

被刻印的时光 ゝ 提交于 2019-12-22 10:56:46
问题 I want to query the meta data in Cognos 8 to find all report and column names. If possible, I'd like to include the column definitions. Can I do this using a Cognos report or do I need to query some repository? Thanks. 回答1: You can select a list of reports from the content store with the following query: SELECT CMOBJNAMES_BASE.NAME AS ObjName, CMOBJECTS.PCMID, CMCLASSES.NAME AS ClassName, CMOBJPROPS7.spec FROM CMOBJECTS JOIN CMOBJNAMES_BASE ON CMOBJECTS.CMID = CMOBJNAMES_BASE.CMID JOIN