reporting

Can I make a two column Crystal Report?

非 Y 不嫁゛ 提交于 2019-11-30 16:40:53
I have a report that has one detail row for every day of the month. I would like to present the info with days 1 to 15 in one 'group column' on the left, and the other days on the right. Each of these 'group columns' would contain four information columns. I can do this manually by splitting the report DB query columns, but I'm really hoping there is a more elegant way. Open the details section in the section expert check the check box "Format With Multiple Columns" (and in the Common tab ). Additional tab "Layout" will be added. You can set there the number of columns and the direction (you

How to display bar value for each bar in a bar graph?

自作多情 提交于 2019-11-30 15:48:51
问题 There is a need to see the exact value that a bar in a bar graph represents, as opposed to the approximate value in the Y axis. How can that be possibly done? Thanks for reading! 回答1: In iReport 3.7.6 you can just check "Show Labels" box under BarPlot properties. In a prior version (3.1.4), I had to create a ChartCustomizer class. If you need to format the number in the label (e.g. to Percentage, add thousands separator, etc), then you definitely need a ChartCustomizer, even in the new

Any good PHP MySQL-compatible reporting frameworks out there?

匆匆过客 提交于 2019-11-30 15:37:25
问题 I'm looking for a web-based reporting framework which is PHP-based and works with MySQL. Here's my problem (besides being too lazy to program this on my own): I have a large (50k+ rows) table which stores log data for multiple clients. These clients need to be able to sort and search and do all those grand things. I'd really like something with a decent amount of power behind it, which is why I'm apprehensive about building one myself. This isn't a big enough need to merit putting an

Microsoft.Reporting.* vs XML/XSLT

坚强是说给别人听的谎言 提交于 2019-11-30 14:56:47
I would like to add reporting capabilities to a .NET application. My data source is just the data model of the application, i.e. a bunch of objects that may have been generated or loaded from anything (not necessarily from a database). The initial plan was to generate a report data XML file from these objects, and then use XSLT to transform this into an XHTML report file. The report can then be shown in the application with a browser control. However, I've noticed that there exist Microsoft.Reporting.* namespaces and from what I've tried, it seems that the classes and controls in there can

Generating Reports - What works for you? [closed]

回眸只為那壹抹淺笑 提交于 2019-11-30 11:01:20
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 3 years ago . I'm looking for a templating tool that allows powerful manipulation of data and report building. JasperReports is powerful, but is it the best out there? I generally don't need the ability for fancy colors or gradients, but I do need the ability to position data accurately

How do I get a summary count of missing/NaN data by column in 'pandas'?

烂漫一生 提交于 2019-11-30 10:47:32
问题 In R I can quickly see a count of missing data using the summary command, but the equivalent pandas DataFrame method, describe does not report these values. I gather I can do something like len(mydata.index) - mydata.count() to compute the number of missing values for each column, but I wonder if there's a better idiom (or if my approach is even right). 回答1: Both describe and info report the count of non-missing values. In [1]: df = DataFrame(np.random.randn(10,2)) In [2]: df.iloc[3:6,0] = np

Error while uploading a report

大城市里の小女人 提交于 2019-11-30 10:43:42
I have create a report using visual studio 2015 with SSDT Tools installed from the following link https://msdn.microsoft.com/en-us/mt186501 The database is on SQL Server 2014. The reports work on my machine however when I try to upload a report on customers machine(Which has SQL Server 2014 and not visual studio). I get the following error "The definition of this report is not valid or supported by this version of Reporting Services. The report definition may have been created with a later version of Reporting Services, or contain content that is not well-formed or not valid based on Reporting

Reporting services: Join all field on a dataset

爷,独闯天下 提交于 2019-11-30 07:33:10
问题 In a report, I've a dataset with a filter(based on a MultiValue parameter). This dataset contains two field: Id and Name. I need to display somewhere the concatenation of all names: Name1 / Name2 / Name3 The problem is that the join method works only on array, and then I cannot specify a dataset as value. I looked in custom code too, but I didn't found anything working. How should I do this ? 回答1: SSRS-2008 R2 and higher... 1. Using LookupSet If you're beyond the 2008 version OP has, there

Creating/Passing Java bean Datasource in JasperReport

不想你离开。 提交于 2019-11-30 07:20:20
I am using JasperReport and ireport in my JSF application to generate reports on the fly. This is what I am trying to achieve:- My structure(read as HashMap/ArrayList) contains data that needs to be passed to the report so that the same is shown in report. My report already contains a Datasource connection using which I am fetching some value from DB and populating it in report. I am creating a subreport so that for data which needs to be passed from code I can use the subreport and embed this subreport inside the main report. My problem is:- 1. I am unable to pass the collection(read as

Cucumber HTML report with Protractor

ε祈祈猫儿з 提交于 2019-11-30 07:09:31
问题 I am using Protractor with Cucumber (js). I would like to generate report files just like with the Cucumber-JVM version. I have seen examples when using Protractor with Jasmine, but practically nothing with Cucumber. How do you generate reports when using this configuration? The final goal is to publish this report in Jenkins, or anywhere else if they are directly generated in HTML. Thanks! 回答1: With the latest version of protractor (from version 1.5.0), you can now generate a JSON report.