I have a bar chart containing Number of Faults in Y Axis, and Year-Month in X Axis.
Example Dataset:
Year-Month | Number of Faults
2013-01 - - - - 5
2013-02 - - - - 6
2013-03 - - - - 10
So in the chart, the labels for each bar would 5, 6 and 10.
How do I create a hyperlink for each label such that when you click the label of yearmonth 2013-01 which is "5", it will redirect you to a report that shows what those 5 faults are.
I hope I explained it well.
Thanks in advance!
EDIT1:
By the way I'm using eclispe, and BIRT report is integrated with Grails. Forgot to mention these specifics.
Try this step :
Open your report (.rptdesign)
Right click to label -> properties
Choose Hyperlink tab
Click edit
In Select Hyperlink Type choose Drill-through
Set the report name and report parameter
Related
I am a new user of Crystal Reports 2008 and ECi M1 ERP.
An existing report within M1 prompts the user to select a [Product Group] and an [Inventory Class] plus other info (screenshot 1).
When I open the .rpt file within Crystal, I can see what appears to be the two relevant Parameter fields in field explorer (screenshot 2)
When I right click on one of the parameter fields, and select "Find in Formulas", the Formula Workshop opens but there are no matches for the parameter field (screenshot 3)
So my question is - how does the User selecting a [Product Group] / [Inventory Class] result in the report only showing that selection when the relevant parameter fields are not used anywhere?
Screenshot 1
Screenshot 2
Screenshot 3
One possibility is that the ERP takes those choices and uses them to populate a temporary table, which is then used by the report.
In a SSRS matrix report there is a need to click a data value and go to another report to display the details of that aggregate data.
Here is the table:
student_id course School
1 English A
2 Math A
3 English B
4 English A
The corresponding SSRS report is as following:
School English Math
A 2 1
B 1 0
requirement is: click 2 (school A with English) it will go to another report as below:
Student_id School
1 A
4 A
You need to create a sub report that takes the required parameters. It's hard to read the question as the formatting of your data sample needs cleaning up but let's assume your subreport will take parameters aclled pSchool and pSubject with values such as 'School A' and 'English'.
Create a new report and name it (e.g. mySubReport) that accepts the required parameters (e.g. pSchool and pSubject). Add whatever you need to this report so it shows the correct results and and test it as normal. This is the report that will get called when you click on the data value.
Once this is working, got back to your original report, right-click the matrix cell you want to be able to click on and click "Textbox properties".
Click the "Action" tab and choose "Go to report".
Select the subreport you created earlier (mySubReport).
In the area below the report selection, add your parameters (e.g. pSchool and pSubject) and set the values from the dropdown list. The dropdown list will show you dataset fields that your matrix is based on.
That's it!
Now when you run the man report and lick on a value, it will pass the fields you from the cell you selected to the subreport and display the results.
If this does not help, edit you question so the structure of your data is clear and I will give a full example.
I need to show top 10 values using Spotfire. I googled lot but I could not find the best solution.
I followed this tutorial: Creating a Dynamic Top Ten Chart but did not find success.
How can I do this?
How to limit a visualization by the top 10 values:
There are 2 ways you could do this. I will list them both with pros/cons.
Method 1 - Visualization Level
Open your visualization's properties and go to the Data tab.
Select "Edit..." under "Limit data using expression:" and include the following expression: Rank([values],"desc")<11 where [values] is the numeric column you want the top 10 of.
Example below. Note all of the filters are untouched on the right.
Method 2 - Analysis Level
Insert a calculated column with the following expression: Rank([values],"desc").
Use the built in filters to only include Rank 1-10 for the top 10. This will filter all of your visualizations in your given filtering scheme to just the top 10.
Example below. Note the RANK filter on the right and how I have it narrowed down to a max of 10.
Let me know if you are still having issues.
Edit: Right click and open image in a new tab if you are having trouble seeing the content of my screenshots. The source imgur link should have the larger resolution viewable.
Within the Properties > Show/Hide Items, you can add a rule to show only the top 5 or 10 items by the Value Axis.
To do a Top 10 Report in Tableau.
Approach 1:(Query level)
Using custom sql : Edit your custom sql to something like this.
select top 10 * from table order by Id desc
Approach 2:(Report level)
Using Index
1.Create a calculated field. `Index()`
2.Change it to discrete.
3.Drag it to column shelves(It should be the first column)
4.Change it to continuous drag it to filters shelves and select `1-10`
https://googletpoint.wordpress.com/2015/04/24/how-to-show-top-10-values-in-spotfire-6-5-2/
Check the above link.. It will be helpful
I need to find the way to configure a real page Break for a grid:
When I set the pageBreak property for a grid now this have effect only to grid row and not count the group header row.
Anyone know if this is possible to set a property that takes into consideration both?
PS: I use birt report designer 4.3.1
I am new to Oracle APEX. My requirement is to setup a Hyperlink from one page to another page.
Currently I am displaying 4 columns in the report of Page 1. The report is like below,
Survey Response Count_of_Cities City_Name
AB Y 2 LONDON,CHICAGO
AB N 3 DELHI,MUMBAI,CHENNAI
AC Y 1 LONDON
AC N 4 TOKYO,HONGKONG,BANGALORE,HYDERABAD
But the revised requirement is I need to show the City_name in another page i.e. Page 2 when the user clicks on value of the Count_of_Cities. i.e. If the user clicks on 3, In page 2 the values should be appear like below
DELHI
MUMBAI
CHENNAI
If I click on the 4, the values in the page should be like below,
TOKYO
HONGKONG
BANGALORE
HYDERABAD
Currently in Page 1 I am hiding the City_Name and created a Hyperlink on Count_of_Cities. When clicked on Count_of_Cities it is navigating to Page 2. But the values for City_Name are not showing properly.
Please sugegst how I can show the City_Name values in page 2?
Please let me know if you require any additional information.
Edited by: 980540 on Jan 9, 2013 2:02 AM
If I understand correctly, you have a report on page one, and you wish to use a column link on Count_Of_Cities to move to page two and save the state of City_Name to be used on page 2.
How are you currently attempting to transfer the value to page 2?
1)Create a hidden item on page 2 named P2_CITY_NAME or similar.
2)On page 1, open the "Report Columns" branch under the report and double click on the column Count_Of_Cities (or double click on the report, click the report attributes tab, and then the pencil/edit icon next to the Count_Of_Cities.
3)Scroll to the Column Link area, and set
Target=Page in this Application
Page=2
Item1=P2_CITY_NAME
Value=#Count_Of_Cities#
If this doesn't work, tell me what URL is being pointed to when you hover your mouse over the column link in Count_Of_Cities.