Can chart "across" axis display all dimension values?

I have a chart that has Race going across the bottom, and I'm displaying the number of students at a given school in a given grade for each race (African-American, Asian, White, etc...) We have a total of 7 race categories.
In a particular classroom, let's say that there are no Asian students and no Native American students. The vertical bar chart automatically displays only the 5 other race categories for which there are students.
Is it possible to instruct the chart to always include all 7 races across the chart, with a null (zero height) bar for those races without student counts?

If you don't have a row for particular races, then use combine with similar request to get those.
assuming your main request have race, Measure then combine with similar request race,column with code 0.
1 st request race,measure
2 nd reqeust race,0
now if you see the output you will see all the 7 races from second request with 0 values. now create the chart. chart will do aggregation of values from 2 requests. Now you will see all the 7 entries. Let me know if it is not clear.
- Madan

Similar Messages

  • How to display all distinct values without duplicates.

    Hi Pros,
          I want to present a values list in dashboard, but this list have much duplicates, so when dispalying, I want to display all distinct values without duplicates.

    Hi,
    You can avoid the duplicates from the source side or use a filtered row option in the component.
    Arun

  • Parameter List displaying all the values on Parameter form

    Dear All...If I uncheck the "Restrict List to predetermined values" option, then report parameter form displays all the values on web parameter form instead of displaying those values in the List Item. Is it the Default behaviour of Oracle Reports 10g or Can I control it anyway because if I've 1000 entries in a list, then displaying all those values openly on the form is an ugly thing and it increases the size of parameter form very much.

    Hello,
    A solution is provided in the Note :
    Note.465886.1 How to Implement an Alternate Solution to Unrestricted List Of Values (LOV) in Parameter Form on the Web:
    regards

  • Pie Chart doesn't display all columns

    I set up a simply table and made a bar chart = everything worked out well.
    I selected my table again and clicked on 'make pie chart' but this time it doesn't display all the colums. I really don't know what went wrong here.
    I'd appreciate it very much if some could help me out here.
    Preview Picture: http://cl.ly/1SKg
    Numbers File: http://cl.ly/1SAh

    patte,
    Even though you have selected the entire table to be charted as a Pie Chart, and the table includes three data series, a Pie Chart can only display one series at a time, so it displays the first one; "3. Klasse"
    In "3. Klasse", the values of Schaukel and Drehscheibe are zero, so there is no pie to display.
    Hope this explains the situation for you. To make Pie Charts for the other two series, you would again select the header cells, then hold down the Command key while selecting the other series. Then add another chart. Do this for each series you wish to chart.
    Regards,
    Jerry

  • Group by Clause displaying all lookup values

    Hello Friends
    I've a simple table with columns namely Date, Reason, Product and Count and the sample data is displayed below.
    ==========================
    Date Reason Product Count
    ==========================
    06/08/2012 Reason1 Home 1
    07/08/2012 Reason2 Motor 1
    08/08/2012 Reason1 Home 1
    09/08/2012 Reason3 Home 2
    10/08/2012 Reason1 Home 1
    06/08/2012 Reason5 Home 1
    ===========================
    In total I've 5 reason lookup values from Reason1 through to Reason5, but the above table consists of few of them.
    I would like to diplay result per day and take an example of 6th August, I want to display below result, i.e. display all 5 reason looksup and assign zero count if there are no records for that day.
    =====================================
    DATE REASON HOME_COUNT MOTOR_COUNT
    =====================================
    06/08/2012 Reason1 1 0
    06/08/2012 Reason2 0 1
    06/08/2012 Reason3 0 0
    06/08/2012 Reason4 0 0
    06/08/2012 Reason5 1 0
    =====================================
    If we write group by clause, missing reasons like Reason3 and Reason4 will not be displayed in the result set.
    And I've tried to write multiple UNION ALL queries to get the above result which works fine, but if there 100 lookup values, I do not want to write 100 Union queries.
    Please let me know if you have any analytical functions to display the end results?
    Thanks
    Murali.
    Edited by: Muralidhar b on Aug 19, 2012 8:17 PM

    If you followed relational design, you have reason lookup table. If you do not have it you should create one. Also, date is reserved word and count is a keyword, so do not use them as column names. Then use outer join:
    SQL> create table tbl as
      2  select to_date('06/08/2012','dd/mm/yyyy') dt,'Reason1' reason,'Home' product,1 qty from dual union all
      3  select to_date('07/08/2012','dd/mm/yyyy'),'Reason2','Motor',1 from dual union all
      4  select to_date('08/08/2012','dd/mm/yyyy'),'Reason1','Home',1 from dual union all
      5  select to_date('09/08/2012','dd/mm/yyyy'),'Reason3','Home',2 from dual union all
      6  select to_date('10/08/2012','dd/mm/yyyy'),'Reason1','Home',1 from dual union all
      7  select to_date('06/08/2012','dd/mm/yyyy'),'Reason5','Home',1 from dual
      8  /
    Table created.
    SQL> create table reason_list as
      2  select  'Reason' || level reason from dual connect by level <= 5
      3  /
    Table created.
    SQL> select  d.dt,
      2          r.reason,
      3          nvl(
      4              sum(
      5                  case product
      6                    when 'Home' then qty
      7                  end
      8                 ),
      9              0
    10             ) home_qty,
    11          nvl(
    12              sum(
    13                  case product
    14                    when 'Motor' then qty
    15                  end
    16                 ),
    17              0
    18             ) motor_qty
    19    from      (
    20               select  min_dt + level - 1 dt
    21                 from  (
    22                        select  min(dt) min_dt,
    23                                max(dt) max_dt
    24                          from  tbl
    25                       )
    26                 connect by level <= max_dt - min_dt + 1
    27              ) d
    28          cross join
    29              reason_list r
    30          left join
    31              tbl t
    32            on (
    33                    t.dt = d.dt
    34                and
    35                    t.reason = r.reason
    36               )
    37    group by d.dt,
    38             r.reason
    39    order by d.dt,
    40             r.reason
    41  /
    DT        REASON                                           HOME_QTY  MOTOR_QTY
    06-AUG-12 Reason1                                                 1          0
    06-AUG-12 Reason2                                                 0          0
    06-AUG-12 Reason3                                                 0          0
    06-AUG-12 Reason4                                                 0          0
    06-AUG-12 Reason5                                                 1          0
    07-AUG-12 Reason1                                                 0          0
    07-AUG-12 Reason2                                                 0          1
    07-AUG-12 Reason3                                                 0          0
    07-AUG-12 Reason4                                                 0          0
    07-AUG-12 Reason5                                                 0          0
    08-AUG-12 Reason1                                                 1          0
    DT        REASON                                           HOME_QTY  MOTOR_QTY
    08-AUG-12 Reason2                                                 0          0
    08-AUG-12 Reason3                                                 0          0
    08-AUG-12 Reason4                                                 0          0
    08-AUG-12 Reason5                                                 0          0
    09-AUG-12 Reason1                                                 0          0
    09-AUG-12 Reason2                                                 0          0
    09-AUG-12 Reason3                                                 2          0
    09-AUG-12 Reason4                                                 0          0
    09-AUG-12 Reason5                                                 0          0
    10-AUG-12 Reason1                                                 1          0
    10-AUG-12 Reason2                                                 0          0
    DT        REASON                                           HOME_QTY  MOTOR_QTY
    10-AUG-12 Reason3                                                 0          0
    10-AUG-12 Reason4                                                 0          0
    10-AUG-12 Reason5                                                 0          0
    25 rows selected.
    SQL> SY.

  • OADefaultListBean to display all the values

    Hello,
    Using OADefaultListBean, i was able to display all the selected values using the below logic but how to get list of all the values in the OADefaultListBean instead of just the selected ones?
    OADefaultListBean list =
    (OADefaultListBean)webBean.findChildRecursive("positionsList");
    String name = list.getName();
    String[] selectedValues = pageContext.getParameterValues(name);
    In the above code, pageContext.getParameterValue(name) gives the list of all the selected values but how to get the list of all the values?
    Thanks
    KK

    Basically my whole point in doing this is to give an option of ALL in the OADefaultListBean so that just by selecting the ALL in the list, it should technically select all the values.
    Thanks a lot in advance for your help

  • Chart not getting displayed with dimension having sorted

    hi Expers,
    we are facing some strange kind of problem...
    let me brief the details:
    1. we have a column month no (from 1 to 12) and month name (Jan to dec).
    2. our client need was to start month name from (Feb ,march.....dec,Jan).
    3. we created a two logical column
    a. month no. -1 (that makes feb as month no 1 and jan as 0)
    b. another logical column name fiscal month no.with case statement where case when above logical column when 0 then 12 else above logical col.
    4. we have put up sort order on basis of column in 3.b. on make a copy of above month name(as mentioned in point 1) and named it fiscal month name
    5. now we create a report with fiscal month name, revenue and country having pie bar graph with bar across revenue and country and fiscal month name in chart slider.
    from now problem starts up.
    6 we want a total (using create group item) which gives values for all the months.
    7 Total is working well when it appears at last ie (feb....dec,jan,total)..then graph is working fine
    8 but when we put total at begining ie (total,feb....dec,jan) then chart displays only for total not for any other month...however values in legends(for country) is changing dynamically...
    i even tried restart the server....but no help from it.
    experts kindly guide to get out of this issue....
    regards
    Ankit

    No specific set up in the server. If you run it just from the BIP UI is the chart included ? You might also chech the J2EE_HOME\applications\xmlpserver\xmlpserver\WEB-INF\lib directory and ensure that the bibeans libraries are present
    bipres,jar
    bicmn.jar
    Tim

  • Line Chart doesn't display all the rows

    Hi Friends,
    I have created a Line Chart with Flash Chart type.
    My query returns 52 rows but on the chart it shows only 15 values on the x-axis.
    Is there any thing that I need to specify for maximum number of rows ?
    You can see my example here : http://apex.oracle.com/pls/otn/f?p=1504:11:4822346801294712:::::
    I appreciate your replies.
    Thanks,
    Raj.

    Goshhh...I dont know how I missed to see the 'Maximum Rows' field in Chart Series page :)
    -Raj.

  • KE30 report: Graphic not displaying all charcateristic values

    Hi Experts,
    I created a report in KE30, and in classic view, when I select 1 characteristic and 1 value field to view in a 3D graphic, I don't see all the characteristic values that were displayed in the report. I have 73 characteristics but only 30 are being displayed in the graphic.
    Do you know if this is a system limitation? Because I didn't find a way to expand it.
    Kind Regards
    Mayumi Blak

    display too wierd..post it in clearly...

  • Display all quantity values, buy sales want highest value in same report

    Hi
    I have slares do num , and item and qty and sales cal month
    if i execute based on month i need get top sales value ( i mean higherst values for that report) and quantity need show all values?
    if i apply condition top 1 for sales its effecting qty also?
    ple let me know what is solution for this, ?

    Hi Suneel,
                     Try with this.....
    Keyfigure  -
    > properties----->calculate single value as---> maximum.
    check here....
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/1f/25883ce5bd7b1de10000000a114084/content.htm
    Hope this will help you.
    Thanks,
    Vijay.

  • Problem with Crystal Reports not displaying all parameter values

    Hello,
    A co-worker of mine is developing a report in Crystal version 11.5.8.826.  One of the requirements from his user is that they would like to select from a list of users for applicable criteria to appear in the report.  He created a parameter with a dynamic list of values, entered prompt group text, selected "existing" as the data source (and chose the corresponding field from the table).  This dropped the UserID field into the "value" field in the table and linked the table to the parameter.  We selected "allow multiple values" as "true" and "allow discrete values" as "true". 
    Here is the problem.  When Crystal prompts us to select the parameters, it doesn't show all of the applicable list of users (it shows 8 out of 12 users).  When we run the query in a standalone sql generating tool (Toad or Golden), we see the full list of users.  Crystal Reports appears to be filtering the selection list of users for some unknown reason.  We have tried changing most every option that we could find within the parameter, but no luck. 
    The problem definitely appears to lie within the parameter- if we run the report without the parameter, we see the full list of users.  Once we add the parameter and attempt to select one or many users, the problem appears.
    Any thoughts?  What am I missing?  Any help is appreciated.
    thanks,
    Noel

    I'll answer my own question in case somebody is curious or happens to find this message via google or another search engine.  See this link.  You need to set your upper threshold within your Registry Editor.
    http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=8029

  • Display all cell values in calculation?

    Is it possible to replace cell references with actual cell values in a calculation (not a formula)?
    For example, how do I replace the cell references below with the actual numbers in those references?
    =(A2-B2)/(A3-B3)*(F3+E3)/(F2+E2)

    The short answer is "no". The long answer is "with an excruciating expression you can do it, but who would want to, and why?
    Here's an example:
    Cell A5 has the first portion of your expression shown the way I think you are requesting. I tired of writing the expression and I'm not sure it's what you want anyway. If you look in the Formula Bar you can see how complex the expression it, just to do that first part.
    Jerry

  • Displaying All Values from a Multiple Value Parameter

    Hi,
    Using XI, I have a parameter field that allows the user to enter multiple values Eg. 01, 02, 13, 14.  I want to create a formula to display all the values the user has selected. 
    Is there a way to do this? 
    Thanks,
    Brian

    join({?Parameter},",")
    creates a string with the items in your parameter separated by commas

  • How to display a variable value in WAD?

    I am using a replacement path variable to filter a report by project number. While this works fine, the project number is not easily visible (only via Filter -> Display All Filter Values and this only displays the description, not the key).
    How can I display the key and the description of the project number variable at the top of the report?
    Thank you,
    Dennis

    The first part is right -
    1) drag a text element onto the page, at a location in which you want the variable value to be displayed
    2) On the left hand bottom page - go to the web item properties for the text element
    3) scroll down to the specific properties for the item - in that uncheck the first two check boxes - display general text elements & display static filter values
    4) in the next item in the properties (List of text elements) click once on the box where List is written and then clcik on the small browse button that appears.
    5) in the window that opens, in the element type field, select variable/variable value as key (as per your requirement) and then under the element ID field type in the technical name of your variable that you want to display.
    click ok and save your template and try executing it.
    See if this solves your problem.
    regards,
    Nikhil

  • Bex. Query in 3.5 : All Variable values using Text Elements not shown

    I am using a Variable, for which I am suppose to select more than 15 values . After executing the report, I am trying look for these values using Layout--> Display Text Elements --> All.
    Only first 10-11 values are shown and the rest are shown as ...
    As such, I cannot see all the values in WAD too, in the info tab. 
    Is there any limitations to display the values with text elements ?
    Any idea how to display all the values ?
    Thanks

    You are right. I can do this if I select Filter values.
    But, I am trying to show the values entered for the variables using Layout-->Display Text elements --. Alll or variables.
    These are the values shown in the web template. The filter values goes to the data analysis tab, which are fine.
    I want to display all the values in the information tab, but only few values are show and rest are shown as ...        The same is the case when I select Layout-->Display Text elements --> All or variables. after I execute the query.

Maybe you are looking for

  • Oracle SSP as a Partner Application

    I've got few questions. 1- How do I get information regarding the configuration of Oracle Self Service Purchasing ( Release 11i) as a Partner Application? 2- I'm working on 3.0.8 release but I can't find the "Oracle 9iAS Single Sign-On Application's

  • Help with save as

    I have a fillable form we use everyday when people go to save the form they do not clear out the file name that is already there (the master file name) and they just save it to the file name that is there already.  So the next time we go open the for

  • [SOLVED] - How to Rename a Win 7 Computer Using Powershell (deployment)

    For those who just want to know what I'm trying to do here's my question: How I can programmatically rename machines during the auditSystem/auditUser portion of Sysprep using PowerShell? What is the exact command and/or function should I be issuing?

  • Error: Insufficient permission on the folder in which the format is to be s

    Hi Experts, I have two users A and B. Now A is sharing a OLAP worksheet with B and getting following error. oracle.dss.d4o.common.D4OException: D4O-1209 Insufficient permission on the folder in which the format is to be saved. oracle.dss.bicontext.BI

  • Anonymous class for Event handling isnt working

    my anonymous class is not working.i keep gettin an invalid method declaration. i think im either mispelling something somewhwere or missing a curly. public SpouseGUI(){      add(new JButton("test"){ addActionListener(new ActionListener(){           p