Pivote table in measure column at dashboard

2)in dashboard pivot measures value click, measure value has contain example amount, that amount has (no.of names total amount ) ,that amount clicks related names displayed is possible thing?
Edited by: Ashok on Sep 24, 2010 5:09 AM
Edited by: Ashok on Sep 24, 2010 5:35 AM

Based on what I see of your example, each row of your pivot table represents the grouping for the totals at the bottom. You are asking for value interaction on the grand total amount, but that's not possible as you have it because the totals are calculated numbers.
However, the desire to click on the "45" in your example is the same as saying "I want to see the details of the 'aa,bb, cc...' grouping."
In that case do your Value Interaction on the attribute corresponding to column that has "aa,bb,cc" and "dd,ee,ff" as its values. If the user clicks on the applicable row, the detail report and can display the details of that grouping.
Hope that makes sense.

Similar Messages

  • How to Sort Dimension in Pivot Table via Order Column which is changing like Factual values

    Hi,
    Recently in of our product offerings we got stuck on this following question:
    How to Sort Dimension based on the Order Value which Keeps Changing with Factual Values??
    We have a data source laid out as (example)
    In the above the “Order” columns are changing per
    Company/(DimensionA) for DimesnsionB.
    Instead what we want is: (But only if we can get the following result without putting the “Order” Column in the “Values” Section. 
    If there are any configurations that we can make to our power pivot model for the similar data set so that the
    DimesnionB in this case can be sorted by the Order column, would be greatly helpful to us. 
    Sample File:
    http://tms.managility.com.au/query_example.xlsx
    Thanks
    Amol 

    Hi Amol,
    According to your description, you need to sort dimension members in Pivot Table via order column, and you don't want the order column show on the Pivot table, right?
    Based on my research, we can sort the data on the Pivot table based on one of the columns in that table, and we cannot sort the data based on the columns that not existed on the Pivot table. So in your scenario, to achieve your requirement, you can
    add the column to pivot table and hide it.
    https://support.office.com/en-gb/article/Sort-data-in-a-PivotTable-or-a-PivotChart-report-49efc50a-c8d9-4d34-a254-632794ff1e6e
    Regards,
    Charlie Liao
    TechNet Community Support

  • Pivot table with variables columns

    I need a helo to pivot table with variable columns,
    I have a pivot table :
    SELECT a.*
    FROM (SELECT codigo_aluno,nome_aluno , id_curso,dia FROM c_frequencia where dia like '201308%') PIVOT (sum(null)   FOR dia IN ('20130805' ,'20130812','20130819','20130826')) a
    but I need to run the select with values for dia , getting from a other table :
    SELECT a.*
    FROM (SELECT codigo_aluno,nome_aluno , id_curso,dia FROM c_frequencia where dia like '201308%') PIVOT (sum(null)   FOR dia IN (
    select dia from v_dia_mes )) a
    thank you

    The correct answer should be "Use the Pivoted Report Region Plugin".
    But, as far as I know, nobody has created/posted that type of APEX plugin.
    You may have to use a Basic Report (not an IR) so that you can use "Function returning SELECT" for your Source.
    You would need two functions:
    One that dynamically generates the Column Names
    One that dynamically generates the SELECT statement
    These should be in a PL/SQL Package so that the later can call the former to ensure that the column data matches the column names.
    i.e. -- no 'SELECT *'
    MK

  • Pivot Table Row and Column extension OBIEE 11g

    Hi,
    I have pivot view report, I have 3 columns,
    1) User Name
    2) Date
    3) Login Count
    User Name will be row(Vertical)
    Date will be Column heading (Horizontal)
    Login Count Measures
    So I will get login Count of user wrt date.
    Now When I give Wide range of filter i.e, from 1st Jan 2010 to 31st Dec 2010.
    There is increase in row also column, when it reaches certain extent it gives error as *'Exceeded configured maximum number of allowed input records.'*
    How to change the limit? or there is any fix?
    Thanks,
    Satheesh

    Hi,
    I have also faced the same issue, i have solved by changing DefaultRowsDisplayed count in instance config file.
    <Views>
    <pivot table>
    <DefaultRowsDisplayed>75</DefaultRowsDisplayed>
    <pivot table>
    </Views>
    Paste that code (which i mentioned in my last post) in instanceconfig.xml before these tags
    </ServerInstance>
    </WebConfig>
    But remember you need to restart the presentation service once this is done....
    Thanks
    Deva

  • Pivot table : new measure

    I wanted to create a new message based on the existing ones in pivot table but the Measures section has no option to create new calculated item.
    Thanks,
    Ted

    Hi
    Create a dumm column in the report criteria and give the formula using the existing columns and use this column in pivot view.
    Thanks
    Diney

  • Can I make a condtional format on pivot table (Or hide columns in a Table)

    I want order by some columns, but do not want show them in the Table.
    I know I can do this in Pivot Table view. But then I will lost the conditional format.:(

    I found a "hide" option at table's column. it works:)

  • Pivot Table Section Properties - Column Heading Display

    Hi guys,
    I've never noticed this until today but on 10G, we had the option, when formatting the section properties of a pivot table, to choose where we wanted to display the column heading (above, before, left, none - see image below).
    https://www.dropbox.com/s/orasud455twrphm/Column%20Heading%20Display.png
    In 11G I can't find this option anywhere, did they remove this option or am I missing something?
    Thanks
    Pedro

    Anyone knows the answer?
    Thanks

  • Pivot Table with Dynamic Columns and Headers

    Hello,
    I'm trying to pivot a table of data where the column headers will be dynamic.  While I know how to pivot the table to get what I want how will I be able to pick up the table column header from the Pivot to display in the report?
    For example:
    Unpivoted data is Employee Code, Branch Code, Problem Code, # of Problems.
    There is many records for a given Employee and Branch that I want to pivot so the Column headers are the Problem Codes and the data below is the SUM(num_problems) for that Problem.
    So the data may look like this for Tech Bob, Branch NY.
    Problem = LEAK, Num_problem = 5
    Problem = DAMAGE, Num_problem = 2
    Problem = OTHER, Num_problem = 3
    Which problem codes may appear is unknown but selecting the DISTINCT(problem) across all techs gives me the column headings to use.
    So if I pivot this data, I get this Row:
    Tech = Bob, Branch = NY, DAMAGE = 2, LEAK = 5, OTHER = 3
    So first can SSRS handle having dynamic columns?  Only Tech and Branch are known and the remaining columns are dynamic based on how many Problems they worked on.
    Second, how can I set the column heading in my Tablix to be the Problem Code?
    Sherry

    You just need to use a  matrix container
    Use EmployeeCode and BranchCode for row group
    ProblemCode as column group and SUM([No Of Problems]) as the data expression and it will generate the columns for you based on ProblemCode values automatically.
    See an example here
    Sample Matrix
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Pivot Tables in Oracle BI Answers Dashboard

    Hi All ,
    I have just moved from MSBI Reports developer role to Oracle BI Answer Dashboard Reports . I have a requirment where i need to update the report like this :
    A1     B1     C1     D1
    D2D     D2     AC     1
    D2D     D3     AC     3
    D2D     D4     AC     4
    D2D     D5     AC     12
    D2D     D2     BC     2
    D2D     D3     BC     1
    D2D     D4     BC     1
    D2D     D5     BC     1
    D2D     D2     BC     3
    D2D     D3     AC     4
    D2D     D4     AC     12
    A2C     D5     AC     2
    A2C     D2     AC     1
    A2C     D3     BC     1
    A2C     D4     BC     1
    A2C     D5     BC     3
    C2W     D2     BC     4
    C2W     D3     BC     12
    C2W     D4     AC     2
    C2W     D5     AC     1
    But I need the report in the below format , I can see something Pivoting , in MSBI i can use Matrix and convert it :
    Sum of D1          
    A1     B1     Total
    A2C     D2     1
         D3     1
         D4     1
         D5     5
    A2C Total          8
    C2W     D2     4
         D3     12
         D4     2
         D5     1
    C2W Total          19
    D2D     D2     6
         D3     8
         D4     17
         D5     13
    D2D Total          44
    Grand Total          71
    Please help me create the same . I will be very thankfull to you all .
    Regards ,
    Nidhi Bhardwaj

    you can go for Individula column level summation in Pivot view ,try to edit the pivot view there you can find options..

  • Extra Measure/Column on Pivot Table

    Hi at all,
    i have a problem about the pivot table in obiee11g. I need an extra measure/column or a new table/pivot-table with new measures out of an other fact-table riht behind the first pivot table wich depends on the first pivot-table.
    Thx

    Pull columns from both fact-tables, create 2 pivot tables.
    Pivot table 1 is with 1st fact table and exclude measures from other fact table.
    Pivot table 2 is with 2nd fact table and exclude measures from 1st fact table.
    Add 2 Pivot views in the analysis
    If it is helpful, please mark as correct or helpful
    If this not helped, let us know in detail with columns for both pivot tables

  • OBIEE 11g pivot dumb question - changing order of measure columns

    Hi, dumb question, in OBIEE 11g, if using a table view it is easy for end users to drag and drop the measure columns in any order desired. Is there a way for end users to change the order of measures when using a pivot view?
    Thanks,
    Scott

    Hi Dpka, no, moving to rows doesn't really solve the issue. Dimensions don't allow you to change the order of the members, except by alphabetic sort.
    Lets say the default pivot has three measure columns in this order:
    1. Sales
    2. Revenue
    3. Cost of Goods Sold.
    If a user wants to change the order of the columns to be:
    1. Sales
    2. Cost of Goods Sold
    3. Revenue
    on a table they just drag the columns the way they want them. On a pivot, it appears that there is no way to change this.
    Thx,
    Scott

  • One question in measures table heading of a pivot table view when using 11g

    Hi experts,
    I have been working on OBIEE 10g for 2 years, and lately I started developing on OBIEE 11g. It is great to discover so many new features which make reporting so much easier and look better, meanwhile, I got confused by some detail changes they have made. I was able to overcome most of the difficulties I have met with, but now there is *1* I can not figure out. Any idea or suggestion is appreciated.
    In OBIEE 10g, when we develop a report using a pivot table, we put column A and B in Rows aera and column C Measures aera, the result would look like this:
    / / A / / B / / C / /
    //VA1 //VB1// VC1//
    //VA1// VB1 //VC1//
    But now I am using 11g, when I put these columns in the same aeres as I did in 10g, the result is surprising like this:
    / / BLANK / / C / /
    / / A / / B / / blank //
    //VA1 //VB1/|/ VC1//
    //VA1/|/VB1 // VC1//
    It looks weird that it should put Rows labels and Measure labels in different lines and create blank labels, and barely makes any sense. I am OK with the blank above the Row labels, but not with the blank below the measure label. A blank label that separates a label and its value is not what I want.
    Can anyone help me to make the pivot table look the same as it does in 10g? Or at least remove the blank label below the Measure label?
    Thanks in advance.

    Hi,
    I am facing the same issue, have you solved it?

  • Using Measures in Rows Section of Pivot table view

    Hi,
    i have a report with 6 columns, out of which A, B are dimensional and C,D,E,F are Fact columns(measures).
    My requirement is to take Column A and Columns C,D,E in Rows section of Pivot table view with column F measure in Measures setion and column B in Columns Section.
    I created the Pivot view as desired but the measure columns placed in Rows Section are not displaying the correct results
    Can someone provide ur inputs on this.
    Thanks in advance.

    For Pivot Table view Measures should be in Measures section only, then only those columns will show correct result

  • Formating column in Pivot Table (Hyperion Interactive Reporting 9.3.1)

    I have a simple pivot table with multiple columns (8) and I have 6 different pivots. I drag the pivots into the report section, but none of the column widths or row heights align properly.
    How do you size the column widths in each pivot and I'm trying to avoid auto-size because that does not get it right.
    Thanks,

    The 6 pivots are different because the rows indicate something entirely different. for example:
    Pivot 1:
    Row Label: Customer Gender
    Column Label: Quarters (1-4)
    Facts: Sales
    Pivot 2.
    Row Label: Customer ethnicity
    Column Label: Quarters (1-4)
    Facts: Sales
    Pivot 3.
    Row Label: Customer Age group
    Column Label: Quarters (1-4)
    Facts: Sales
    Pivot 4.
    Row Label: Customer City
    Column Label: Quarters (1-4)
    Facts: Sales
    Then I grab each pivot and drag them into the report section to create 1 report.
    A better solution?

  • Duplicate fact column  as percentage in pivot table.

    Hi,
    I created duplicate fact column set as percentage in pivot table.
    Duplicate column not visible for graph generation.My requirement is need to use percentage column for graph .
    How to achieve this.kindly let me know.

    Thanks for reply.
    Sorry if im not clear.
    Here is my requirement.
    1.In my report contains 2 columns.
    2.Example - year,count.(Here- Count is fact)
    3.I make the count as duplicate column and set as percentage.
    4.If i create graph in pivot table itself then graph contains 3 column information i.e.,Year,Count,% Count.
    5 Here i unable to hide/remove original count column.
    My requirement is my graph has to contains 2 column information i.e., Year,%Count.
    How to achive this.kindly let me know.

Maybe you are looking for

  • URGENT HELP NEEDED - iPhone 3Gs no longer detected or charged by MacBook

    My iPhone 3Gs (3.1) has been running fine, until several hours ago today, when I plugged it to my MacBook, the iPhone is no longer detected - it doesn't show up in iTunes, nor it is charged. I tried opening iPhoto, and it wasn't there too. Not with I

  • 2 Questions on Maps in iOS 6 on iPhone 4

    I know that certain iOS 6 Maps features are not available on on iPhone 4, but my questions are: 1. Is there a way to add the Maps to the lockscreen as advertised, or is that a 4s and above thing as well? 2. Is there a way to plan a trip with multiple

  • SecurityError #2148 in nightly builds

    Hello all, I have little doubt that I've done something daft here, or completely missed a piece of documentation somewhere pertaining to using nightly builds, but I'm getting a security error when I try to build my Gumbo application with a nightly bu

  • HT5624 My Apple ID was disabled and I cannot purchase in Itunes.

    My apple Id was disabled for any reason I don't know. I cannot update my previous purchases or even make purchase from Itunes. How can I retrieve it back? Please help.

  • ABAP Program or Function Module to activate infospoke/openhub table

    Hi, Post migration to production, when i am trying to load the data in open hub table, its showing OH table is not active. i had tried to all aspect but i am unable to load the data. is there any ABAP Program or Function Module to activate infospoke/