how to put two records same page - jasper-reports

I have a page with exactly same pre-format data in the left side than in the right and i need that my result query data that gives me example 10 records i need to show in the left side first record, in the right side second record on first page and then do the same with all records Now i make a first report wich calls another one, first report gives me data but i can only show one record per page in second report, i need 2 records per page, one in left side and another in another side of the page...

Assuming that each of your records will take up more than half a page, this should be as simple as changing the report to have 2 columns.
In iReport, select the report itself (top element) in the report inspector, then change the Columns property to 2. Alternatively, in the JRXML, add/change the attribute columnCount on the jasperReport element to 2.
If your records occupy less than half the page height each, you will end up with multiple records per column. To get around this, create a group with the expression $V{REPORT_COUNT} and check the "Start on a new column" property (set the isStartNewColumn attribute in JRXML). This will create a new column for each record.

Related

SSRS report need to show n-time based on dataset rows

I have designed two pages and each page have different table.Currently my dataset return only one user details.So i have bind all details in table.
Requirement
In case data set return two user details ,need to print two user details.First two pages for first user and second two page for second user.
Is this possible in SSRS report? If yes please guide me.
As you already have a report working for a single user then I would normally do this with subreports.
Asumming your current report accepts a userid or similar as a parameter....
Create a new new report.
Add a dataset that returns a list of users that you want to produce the report for
Add a table and set its dataset property to the name of the dataset you just created.
You can remove the header row and all columns except one from the table
In the remaining cell, right-click and choose "insert Subreport"
Right-click the subreport placeholder and choose properties
Choose your original report as the subreport
Click the parameters tab and choose the subreport property name on the left side, choose the field from your dataset that contains the userid (or whatever value you pass as a parameter) on the right side.
That's pretty much it, when you run the new report, it will produce 1 row per user, in each row it will run your subreport.
You will need to use a matrix, specifically row groups, grouping by using user details, and possible inserting a page break between each instance. This should get you going in the right direction.

How to filter records in a single section of Crystal Reports

I have my base record set filtered with a parameter. However, this leaves me with 6 records and I need to filter down to one particular record in each of my sections. If none of the records meet my criteria i cannot suppress the section, it will need to just stay there and blank.
Essentially, I need a method to filter down records that hit one of my sections but not affect the report as a whole.
A few notes:
I cannot use a subreport for this. I need to duplicate this effort over a couple of sections and if I add any more sub reports it just crashes crystal reports (I have a lot of data & a ticket with SAP)
Using a suppression formula hasn't worked yet because I need the section to exist, if it has a null value
Applying no filter doesn't help me because it will duplicate my section 6 times
2 options.
a)
Right Click on white space and choose Insert Group
Choose your field and select specified order or use another record that can filter your data
On the Specified Order Tab click New
Select equal to on the combo box and specified what record you need to be shown
or
b)
Right click on the record
Next to the suppress check box, click on x-2
Here you can create a formula to suppress the records that you don't need.

repeating only some group header rows RS 2008

I am struggling with getting only some group header rows to repeat on subsequent pages. I am using the advanced properties to set FixedData, KeepTogether, KeepWithGroup and RepeatOnNewPage. No combination seems to work. I need the first three rows to repeat because there is only text. The next 8 rows contain group totals that I do NOT want to repeat.
I saw this post:
SSRS 2008: How to repeat on new page one row of table header
but it didn't help me. I still get the TablixMember must have the same value set for KeepWithGroup property as those following or preceding the Dynamic TablixMember.
Thank you in advance.
This is because you are adding everything inside the group.
When you click on tablix row you see a "Insert Row" . When you click on it you can see a row to be added inside the group and outside the group.If you add the row inside the group(which we do and system does automatically) it repeats for every row. So please add a row saying outside the row and try to add sum of the rows in this column. I had similar problem it did solve.

SSRS get the last row on each page

In SQL Server Reporting Services I have a row group with a dashed bottom border separating each row. I want to remove that dashed border from the last row on each page. How do I calculate the last row on each page?
I counted 25 rows on the first page, so I tried this:
iif((rownumber(nothing) MOD 25)=0,nothing,"Dotted")
But on page 2 some rows had so much text in a column that in the end the page only had 24 rows, so the row number changes based on amount of text. I need a new approach. Has anyone had experience with this kind of issue?
Why don't you just present a row grouping and then determine the properties on that? Choose the details row and then select 'Row Groups' and choose 'Add Group'>'Parent Group'. Define your logic for getting a total, add a footer if you want it at the bottom. Choose 'Page Breaks' and then report will break on grouping for a new page. Address the properties for the footers.

Record headers on side of report page for column-wise reports

I'm making a report with "horizontal" records, so that data in each record displays in a single column, and columns are repeated across the length of the page, so the data comes out like this:
The fields really need labels at the left side of the page, however I can't see how to make a "header" at the side of the page. The original report in Excel has something like this:
While I got the colum-wise records working fine, I'm puzzled as to how I can make the rightmost column into a label/header area. It will need to repeat on each page as well. I'm using the "format with multiple columns" feature in Section Expert. I see no such "column" feature for the header sections and if I just insert a text object into the Details column to the left of the data, I get that text copied over to each record like this:
How can I make these "side" headers along the left/right side of the page in Crystal?