Column & Line in a single chart. Ignore Grouping for Line

Hi,
Here is the scenario to show a chart for "Resource Allocation to selected Projects and capacity".
1. Show Staked Columns for Projects<o:p></o:p>
2. Show Capacity of Resource with Line Chart (both should be in same chart)<o:p></o:p>
3. Group By Projects(Series Group) and Category Groups By Month.<o:p></o:p>
Following is the desired out:
Problem I'm facing:
    I was able to show both Columns and line by changing the chart type for capacity. But issue is that Group By (series Grouping) is applying to Line (Resource capacity) as well. So multiple resource capacity lines are appearing on the
graph. It would be good, If charts allows to display only one line by summing all group values for resource capacity. 
So, Can we stop considering group By for line chart(Resource capacity)?
Below screen shows that how current report displaying.
Thanks in advance.
Thanks, Ram

Hi ram,
According to your description, I can reproduce the same issue. Since the values in the chart is always relate to Category Groups and Series Groups. The behavior is by design in SQL Server Reporting Services (SSRS).
In SSRS, chart is similar to the matrix.
The Columns group in the matrix is identical to the Category Groups area in the chart.
The Rows group in the matrix is identical to the Series Groups area in the chart.
The Data area in the matrix is identical to the Values area in the chart.
Since we add data in the Values dialog box, it is in the Category Groups and Series Groups scope.
Regards,
Alisa Tang
Alisa Tang
TechNet Community Support

Similar Messages

  • Two line graphs in a single chart

    Hello Experts,
    I am having set of values each for one line graph.
    But I want to plot these two graphs in a single chart.(2 line graphs in a single chart)
    Please help me how to plot?
    Regards,
    Apex User

    Hi,
    Your query needs to return data in this format:
    link    label        value1   value2
    null    01-JAN-10    5        6
    null    01-FEB-10    3        6
    null    01-MAR-10    2        5where 'value1' column will be the first series, 'value2' column will be the second series, etc.
    So you SQL query will need to be something like:
    select
    null link,
    created_month label,
    sum(value1) value1,
    sum(value2) value2
    from table
    group by
    created_monthAmanda

  • How to make one of the chart ignore series grouping..

    I need to create a dashboard where i have
    X- axis -- Months
    Y-axis 1 -- Units
    Y-axis 2 - Percentage..
    Series Group -- State
    Now i have to group the percentage by state which is a line chart ...where as the units is stacked area which shouldn't be grouped by state...So is there a way to not group the units by state and group the % by state in the same chart ?
    I will have stacked area over which i need to have the % with line chart ..
    Is there a way to achieve this in SSRS 2008 R2 ?

    Hi Sri,
    In chart, when we add the fields in the data drop zones, Reporting Services calculates an aggregate for the field based on the category group and series group. The scenario you post is not support in chart data region.
    To work around this issue and meet your requirement, please refer to the following steps.
    1. Specify the values expression of the “Units” filed as follows:
    =SUM(Fields!units.Vlaue,”Chart_CategoryGroup”)
    (note: specify the scope with the name of the category group in chart instead of the label of the category group, for example,”Months”)
    2. Hide the duplicate columns or bars in the stacked area: right-click the “Units” filed and open the series properties dialog box, in the visibility page, set expression for hidden as follows:
    =IIF(Fields!units.Vlaue=First(Fields!units.Vlaue,”DataSet”),false,true)
    3. Specify the series displayed in legend, type the custom legend text as follows:
    =”Uints for this Month”.
    When preview the chart, the report shows only one aggregate value for each category group in the stacked area.
    The following screen shot the designer structure and the preview of a similar report, please take as reference.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Grouping of SC line items to single PO

    Hi,
    We are facing an issue with grouping of SC line items to one single PO as per the details given below.
    The requirement is if the SC has 10 line items as below
    5 line items with no source of supply                - 5 PO's
    3 line items with preferred vendor (82000000)    - 1 PO
    2 line items with preferred vendor (82000001)   - 1 PO
    In the first case 5 PO's has to be created. This is standard no issues.
    In the second case system has to group 3 line items to 1 PO.
    In the third case system has to group 2 line items to 1 PO.
    We have tried the BADI BBP_LOCAL_GROUP_PO and it doesn't help for the second & third case of our requirement.
    We tried using the Document change badi to convert the Prefferred vendor to vendor and could not do that.
    We also tried the FS BBP_SC_TRANSFER_GROUPED, but it doesn't cater to our requirement.
    Any help would be highly appreaciated.

    Here is a sample code that convert preferred vendor into fixed vendor.
    You can easily change it to your requirement )
    method IF_EX_BBP_DOC_CHANGE_BADI~BBP_SC_CHANGE .
    Constants : c_vendor type BBP_PDS_PARTNER-PARTNER_FCT
    value '00000019',
    c_preferred_vend type BBP_PDS_PARTNER-PARTNER_FCT
    value '00000039'.
    Data : ls_partner type BBP_PDS_PARTNER.
    *Read Table it_partner into ls_partner With key PARTNER_FCT = c_vendor.
    *If sy-subrc NE 0.
    Loop at it_partner into ls_partner
    where PARTNER_FCT Eq c_preferred_vend.
    Move c_vendor To Ls_partner-PARTNER_FCT.
    Modify it_partner from ls_partner index sy-tabix.
    Endloop.
    *Endif.
    et_partner[] = it_partner[].
    ET_ORGDATA[] = IT_ORGDATA[].
    ET_ITEM[] = IT_ITEM[].
    ES_HEADER = IS_HEADER.
    ET_ACCOUNT[] = IT_ACCOUNT[].
    *break ybo
    *IT_PARTNER
    *ET_PARTNER[]
    endmethod.

  • How to remove dotted lines in a single column using javascript?

    Hi,
    In InDesign document,i want to remove the dotted lines in a single column using javascript.here i want to remove only the dotted lines has presented at the end of text in a cell.kindly help me if anyone has idea regarding this.
    Thanks in advance!
    Vimala L

    Hi,
    Those dotted lines have added in the document by manually. The dotted lines have presented in all the columns but in a single column i need to remove it.
    Thanks,
    Vimala L

  • How to superimpose data from two different charts into a single chart?

    I have a single chart that lists numbers by month for a two year period like this:
    Jan 100
    Feb 200
    Jan 103
    Feb 199
    The numbers are all in the same column rather than different columns.
    I'd like to creat a chart that plots the data for each year on the same X axis, so that I can see the two january numbers, the two february numbers, etc. on top of each other. But nothing I've tried seems to work. Numbers seems to always put the second january after the first december on the x axis rather than recognizing it as a new series to be superimposed on top of the original january.
    Is there some way to fix this short of putting the data into a new column?

    What your describing is a table of wht I would call raw data. I would also have a summary table that would use functions like sumif and sumifs, then make my chart off that. This table would have each month in a column and the  years across as headers. ( if you're familiar with excel, it would be the equivalent of making a pivot table and chart, but manually).
    Jason

  • File  Content  Conversion for ignoring the entire line

    Hi,
       I'm getting a CSV file from that i want to skip some  records based on some validation.. for example:
    I'm getting the following  data :
    EmpNo                   EmpName                   EmpDept
    E101                       ABC                               ABAP
    E102                       XYZ                                BW
    E103                       GFC                               XI
    E104                       BVM                               ABAP
    E105                       ASD                               BW
    E106                       YFC                                XI
    SO, here  where ever i'm getting  EmpDept = XI  .. i want to skip those all the  records( that entire line  i want to skip).. .. this can be possible through Message Mapping.. but i wnat to do this in the File Content Conversion..  how can we do this..
    any  helpful answers   will  appriciated..
    Thanks
    babu

    Hi,
    FCC is used to generate the XML structure so that XI can understood properly. You can not do any kind of validations or Skip the records based on Element value condition in FCC.
    There are scenarios where you want to skip the lines that time you can use the below option in FCC but this is again not based on condition.
    Under Document Offset, specify the number of lines that are to be ignored at the beginning of the document.
    This enables you to skip comment lines or column names during processing. If you do not make an entry, the default value is zero lines.
    The best way to do is use the UDF:
    Write an UDF on target root node.
    take input in one context:
    input a= Emp Dept:
    for(i=o,i<a.length;i++)
      if(a{i}.equals("X"))
       result.addValue(SUPPRESS); this will supress the target root node if condition is equal to X
      else
      result.addValue("Constant"); this will generate the target root node.
    Thnx
    Chirag

  • Color not consistent for Line Chart and Legend for prev and curryr

    Hi
    I am trying to pull last year and current year data in line chart with different color coding. I have multiple parameters selection on single chart. For some it reflects the color properly and for others it interchanges the color.
    Crystal xI R2..
    Please let me know the solution.
    Thanks

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Line style of Word tables is ignored. Broken lines or dotted lines appear as uninterrupted lines

    Bug in Adobe XI:
    The line style of Word tables is ignored. Broken lines or dotted lines in Word tables are shown as normal uninterrupted lines in PDF file.
    For example, in my Word document I choose the following line styles in tables: dotted line (.........................) or broken line ( - - - - - - - - - - - - ).
    In the PDF file, all lines are shown as normal uninterrupted lines (__________________), even if I zoom in 800% or more.
    Is there a solution for this problem? (In FreePDF, it works well, but FreePDF has other disadvantages and therfore is no solution for me.)

    Ok 1st one. The warning restriction message relates to this line in main.cf:
    smtpd_helo_restrictions = permit_sasl_authenticated  permit_mynetworks  check_helo_access hash:/etc/postfix/helo_access  reject_non_fqdn_hostname  reject_invalid_hostname  permit reject_invalid_helo_hostname
    The last reject occurs after the single word "permit" and is ignored.
    However, that's not the problem.
    I'm not exactly sure what's happening, but this might be a clue.
    It would appear that either postfix is not being able to create the socket for private/policy or it's somehow created with the wrong permissions.  You might need to ramp up the debug level to get a better idea.
    You could check if it's being created by "netstat -a | grep private/policy" in terminal.
    My guess is that it's not being created because there is no setup statement in your master.cf file, but I don't understand why postfix would be looking for it if it isn't set up.  Private/policy I think relates to grey listing.  Maybe gives you a hint.

  • Remove grid lines by default in chart view

    Hello,
    I'm working in version 10.1.3.4.1. I've been trying to remove the grid lines from the default chart view. I've read some posts on here and in the blogs about changing the default chart look, but I haven't seen anything specific to grid lines. I think I need to edit the pcxml files located in .../s_oracle10/popbin. I've been messing with these two files:
    - bar.pcxml (this seems to be for horizontal bar charts only)
    - column.pcxml (this seems to be for vertical bar charts only)
    Within <ValueScale> and <CategoryScale> I tried changing the MajorGrid and MinorGrid parameters to values like 'Disabled' and 'False' but this seemed to have no effect. I also tried changing the color from #eeeee to something else but this also seemed to have no effect at all.
    I've replicated whatever changes I've made to the corresponding file in the oc4j directory. I am restarting all services after making my changes. I have been able to get some changes to bar.pcxml and column.pcxml show up in the application. I was able to change the default BarStyle from 'Cylinder' to 'Rectangle' successfully, so I think my process of editing the file, copying it to the corresponding oc4j directory, and then bouncing the services is working.
    Can anyone point me in the right direction for getting all of the grid lines to go away by default? So far I've only tried removing them from bar charts, but ultimately I want them off by default on line charts as well.

    Are you able to acheive this.?
    PCXML script is used for chart rendering, and with that I think you can't demark the Gridlines.
    The following Xml file gives the definitions for the chart components including gridlines.
    chartviewtemplates.xml
    Which inturn refers to the following js for gridlines
    i think you have to work on the Js here demark the grid lines by default
    <Oracle_BIHome>\web\app\res\b_mozilla\views\chart
    dlggridlineseditor.js
    Before doing any changes take the backup.
    Thanks,
    Vino
    Edited by: Vinodh NK on Oct 22, 2010 3:44 AM

  • Grouping vendor line itme for payment

    Hi FI Gurus,
    I created a payment proposal for a vendor and in the edit payment proposal I found two different line items which would create 2 check for the same vendor. The vendor is having 7 invoices totally to be paid and those 2 line items are having each 2 and 5 invoices respectively.
    My questions is on what basis this grouping takes place and how can I cut a single check for all the 7 invoices ?
    Thanks in advance.
    Reply with solution would be awarded with points.

    hi Babu,
    when u run the F110 payment run the total amount will be cleared within a single stroke and it will be generted in 1 check itself.
    If u want to block some invoices then in the <b>Display proposa</b>l u can see how much is the Outgoing payment to be cleared and how much are the invoices. In this screnn go the previous page and double click on it and then block the invoices which u want to stop the payment.
    Once again get back to the previous page and run the <b>Proposal</b> .
    Now u can see that the wanted amount has been only cleared and it is ready with the Check .
    Hope this solution is helpfull...
    assign the points if usefull...
    Ranjit

  • Group PO line item in Shopping cart

    Hi All,
    Currently SRM has some criteria to split the PO and if the contract number is different then it splits the SC item to create 2 different PO, But as per our requirement even SC has two items with same vendor, pur org,etc... but different contract number then it should create 1 PO in the backend system.
    Badi:
    I have tried BBP_SC_TRANSFER_BE-GROUP_PO but CT_PROCITEM is empty
    So i tried with this BADI BBP_BS_GROUP_BE, but BBP_BS_GROUP_BE--GROUP_PO_BACKEND  is called item by item.... if there is 2 items then it is called 2 times ... with single current records...
    Please help me So how to group the line items.
    We are in SRM 7.0 and we are using classic scenario
    Regards,
    Rama.

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Drawing a line straight across a chart

    Is there a way to draw a horizontal line straight across a
    chart, say a column chart. I want the line to extend all the way
    from the y-axis to the far right of the chart.

    "LittleMuscle" <[email protected]> wrote in
    message
    news:g7i93j$dqk$[email protected]..
    > Is there a way to draw a horizontal line straight across
    a chart, say a
    > column chart. I want the line to extend all the way from
    the y-axis to
    > the far right of the chart.
    http://www.quietlyscheming.com/blog/charts/easy-custom-charts/

  • Error -90032 occurred at Error in function centref at line 5 column 8: The indexes are out of bounds for the variable you specified

    Sir, 
    i am running a matlab code in mathscript of labview but getting an error
    Error -90032 occurred at Error in function centref at line 5 column 8:  The indexes are out of bounds for the variable you specified
    this code running successfully in matlab 
    please help me in this regard
    a .vi format file is attached named as mfcc_new.vi
    Attachments:
    mfcc2.vi ‏35 KB
    mfcc_new.vi ‏111 KB

    May I see you have 6 inputs to your Mathscript Node. When you test it in Matlab I suposse that you're using some values for this inputs and everything work as expected. Then, run it in Labview using highlight execution, retaining wire values and using single stepping. Check the values which are being inserted to your Mathscript Node and ensure that they are correct. You're having an "indexes out of bounds" mistake, so it probably means that there is something  wrong with the inputs according to your expectations. You can also put the MathScript alone in another VI and insert the inputs you're expecting manually and check in the same way.
    Good luck!

  • Group several lines in different ports

    Experts:
    I used the Labview andI met a problem by group several lines in different ports. For example, I had 11 address lines, there are 8 in port C and 3 in port D. I want to group them into a group. I used the group configration and group write function to write signal to those lines. But it seems didn't work. Plese gave me some suggestion. Thanks!
    --Ying

    Typcially, when you group multiple ports together the port or channel size should be multiple of 8. This means that if you want to group 11 lines together, you will have to group port C and D, a total of 16 lines together. When you read from those 16 lines, you can ignore the upper 5 bits of data. When you write to those 16 lines, you can write zero to the upper 5 bits.

Maybe you are looking for