Lines that behave like a pie; the answer is 100% what is the question?

I have a requirement that the customer wants to parameter motor and stacked line charts bar that always add up to 100%.

I know it's pretty simple with a pie chart, but how it can be done with formulae or properties of the graph - where the result is not a pie?

i.e.

Company A, B, C
Volume of sales, 60, 30, 10


Result

A 60
B 30
C 10
------
100

But if the criterion is company b, C, then the result should be.


B 75
C 25
---------
100


Is this possible?


Thank you

Robert.


PS Version is 11.1.1.5

And actually I have many columns of various dimensions which have parameters, but my requirement is essentially the same, express the results as a percentage of the total data returned to the suite parameters when it is represented graphically in line / bar charts.

Published by: Robert Angel on October 15, 2012 03:51 to specify in detail

Hello

Try this...

Create a PivotTable with company A as the dimension attribute and the Volume of sales of the measure.

Make sure that the company is in the section of the pivot column and measures the Volume of sales in the topic. No dimension of the section of lines. Click the Options more... for the measure and choose view data-> percent of-> Section.

You should now have a PivotTable with company names across the top and a single percentage share of value.

Now add a PivotTable chart and change the format of stacked bar.

Hide the PivotTable dynamic source (in the game of chart position graph only) and display in the layout composed.

Please indicate so useful / correct.
Andy.

Tags: Business Intelligence

Similar Questions

  • get rid of lines that are completely understood by the other lines

    using oracle 10 g

    I have a requirement where I have a few groups that have a start date and end date, and
    I don't know how many lines per group, it is dynamic.

    I need to get rid of all the lines that are completely understood by the other lines per group
    To tell if an online group has started on January 1, 2000 and ending on January 1, 2001
    and another group line begins February 1, 2000 and ends at 2000 1 dec
    only the line Jan to Jan should appear.

    so, for
    with t as
    (
        select 'A' grp, 1 id, to_date('01-01-2000', 'MM-DD-YYYY') start_dt, to_date('01-01-2001', 'MM-DD-YYYY') end_dt from dual union all
        select 'A' grp, 2 id, to_date('02-01-2000', 'MM-DD-YYYY') start_dt, to_date('12-01-2000', 'MM-DD-YYYY') end_dt from dual union all
        select 'A' grp, 3 id, to_date('03-01-2000', 'MM-DD-YYYY') start_dt, to_date('12-10-2000', 'MM-DD-YYYY') end_dt from dual union all
        select 'A' grp, 4 id, to_date('07-01-2000', 'MM-DD-YYYY') start_dt, to_date('01-10-2001', 'MM-DD-YYYY') end_dt from dual union all
        select 'A' grp, 5 id, to_date('01-01-2000', 'MM-DD-YYYY') start_dt, to_date('01-01-2001', 'MM-DD-YYYY') end_dt from dual 
     )
    I don't want to see
    GRP,ID,START_DT,END_DT
    A,1,1/1/2000,1/1/2001
    A,4,7/1/2000,1/10/2001
    Published by: pollywog on July 20, 2010 11:49

    Published by: pollywog on July 20, 2010 11:56

    Published by: pollywog on July 20, 2010 11:56

    Well, I do not get the exact release you do, but I'm sure that this complies with your verbal condition.

    You may have a fault in your output specified? It is also quite possible, that there is something wrong with my query :)

    with
       t as
    (
       select 'A' grp, 1 id, to_date('01-01-2000', 'MM-DD-YYYY') start_dt, to_date('01-01-2001', 'MM-DD-YYYY') end_dt from dual union all
       select 'A' grp, 2 id, to_date('02-01-2000', 'MM-DD-YYYY') start_dt, to_date('12-01-2000', 'MM-DD-YYYY') end_dt from dual union all
       select 'A' grp, 3 id, to_date('03-01-2000', 'MM-DD-YYYY') start_dt, to_date('12-10-2000', 'MM-DD-YYYY') end_dt from dual union all
       select 'A' grp, 4 id, to_date('07-01-2000', 'MM-DD-YYYY') start_dt, to_date('01-10-2001', 'MM-DD-YYYY') end_dt from dual union all
       select 'A' grp, 5 id, to_date('01-01-2000', 'MM-DD-YYYY') start_dt, to_date('01-01-2001', 'MM-DD-YYYY') end_dt from dual union all
       select 'A' grp, 6 id ,to_date('12-25-1999', 'MM-DD-YYYY') start_dt, to_date('01-05-2001', 'MM-DD-YYYY') end_dt from dual union all
       select 'A' grp, 7 id, to_date('02-01-2001', 'MM-DD-YYYY') start_dt, to_date('02-01-2001', 'MM-DD-YYYY') end_dt from dual
    )
    select
       grp,
       id,
       start_dt,
       end_dt,
       last_start_dt,
       last_end_dt
    from
    (
       select
          lag(start_dt)   over (partition by grp order by start_dt asc)  as last_start_dt,
          lag(end_dt)     over (partition by grp order by start_dt asc)  as last_end_dt,
          grp,
          id,
          start_dt,
          end_dt
       from
          t
    )
    where last_start_dt is null
    or
    not
    (
             start_dt  between last_start_dt and last_end_dt
       and   end_dt    between last_start_dt and last_end_dt
    )
    order by start_dt asc;
    
    G                 ID START_DT             END_DT               LAST_START_DT        LAST_END_DT
    - ------------------ -------------------- -------------------- -------------------- --------------------
    A                  6 25-DEC-1999 12 00:00 05-JAN-2001 12 00:00
    A                  3 01-MAR-2000 12 00:00 10-DEC-2000 12 00:00 01-FEB-2000 12 00:00 01-DEC-2000 12 00:00
    A                  4 01-JUL-2000 12 00:00 10-JAN-2001 12 00:00 01-MAR-2000 12 00:00 10-DEC-2000 12 00:00
    A                  7 01-FEB-2001 12 00:00 01-FEB-2001 12 00:00 01-JUL-2000 12 00:00 10-JAN-2001 12 00:00
    
    4 rows selected.
    
  • Mobile Web site that behave like an application.

    I created a mobile Web site Muse adobe and wish that it behaves like an application added to the home screen. If full fullscreen without the features in safari (iOS). Does anyone have solutions (code) for this?

    The ITI is not possible to create a complete iOS to a website app. Requiring a software development or some kind of conversion tool. You will still see the browser frame, but it will decrease when you move to the bottom of the page, as long as you do not use the scroll effects.

  • How to make a line that looks like a street?

    I'm trying to zoom by something that resembles streets using 3d and the camera layer. If I create a long rectangle, once I'm in 3d there is no way it will be long enough stretch the window. Finally, it will look like a small stick. so I need a way to make a line that is locked at both ends

    Simply use a 2D layer and distort with corners, transformation or anything that you fancy effects. Or use the beam effect...

    Mylenium

  • How do you get back the small line that allows you to match the clips perfectly?

    Don't know how to explain it properly, but that the little line that appears when you move a clip so that you can match it up without overlap next to him?

    I managed to get rid of it and I have literally no idea how or how to go back, really need help because it's so difficult to match clips without her, they overlap or have a black screen between the two! I'm using Premiere Pro CS6.

    Any help would be great, thanks

    It took me a while to understand what it was that you were missing.

    Hit the S for snap (magnet).

  • Select the list that behave like trees

    Hi all

    I use apex 4.2.5.

    I want to create a tree like the list item, which shows the child records under main folders.

    for example, in the emp table, employees of managers. so I want to create a list which show and then employees managers under each manager way as only one employee may be selectable, managers should not be selectable.

    How to do this?

    Thank you

    Maahjoor,

    Consult the Group by list select plugin that helps you choose the child entries

    I hope this helps.

  • I want to create a help line that looks like the attached illustration. Can anyone advise me as to the best approach I could take?

    sample help system.png

    Thank you!

    The sensitive layouts in RoboHelp 2015 are HTML5, as well as layouts multiscreen. Sensitive layouts are much easier to work with.

    The layout that show you something will almost certainly Google has created in-house, but it is very similar to the layout that are provided with RoboHelp. I suggest you try one of the provided schemas and then come and saying more precisely how this isn't what you want, if this is the case.

    When you have generated a layout, keep resizing of the window to see how it changes by reducing the size to mimic a Tablet and a smartphone.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Lines that appear in folders on the Air iPad home screen

    I have an iPad Air. Yesterday when I open a folder of apps on my home screen, lines appeared. It's never happened before.  This continues to happen.  I changed the display settings, restarted iPad, still no change.  Any suggestions?

    See attached picture.

    If you already have a Reset, try a restore.

    Reset: hold the Home and Power buttons until you see the logo Apple (10-15 seconds).

    If this does not help, you may need to restore your iPhone: https://support.apple.com/en-us/HT204184

    If your backup in iTunes, make sure that it is an encrypted backup.

  • How to fill out the lines that have been drawn with the paint brush tool?

    I keep trying to use the paint bucket tool, and it does not. I need help, because I need to work on this animation.

    It is usually because there are gaps in the line. There is a trick which called narrow gaps that is available when you click on the paint bucket tool. Select one of the options, and it's much easier to fill something drawn with a brush.

  • JavaScript behave like button, open the external link

    Bjects button or hyperlink, you specify to open the link in the Device´s browser rather than internally in the publication.

    Then, you specify the same in Javascript?. I tried with 'target = "_blank" ' in the link, but it doesn´t work.

    The problem is that web sites, videos, etc, just Don t work in Tablet Android openness in the publication. Just an empty window.

    But I want iOS users will be able to view this content in the publication (works perfectly under iOS)... So I want to write the link in Javascript, detect if android or iOS, since West it s no way to perform this detection on a button...

    Something like (just an idea of the code is not complete):

    < script type = "text/javascript" >

    au var = navigator.userAgent.toLowerCase ();

    var isAndroid = ua.indexOf ("android") >-1;

    If {(isAndroid)

    document. Write ("< a href =" www.sitewithvideoembed.com/video.html "target =" _blank"> LINK < /a > android external" ");

    }

    else {}

    It s iPAD...

    document. Write ("< a href ="www.sitewithvideoembed.com/videofile.mp4"> LINK for iPad/normal internal < /a >" ");

    }

    < /script >

    I know West an array specifying the limits with overlays web and multimedia in Android, but the performance is just terrible, but I Don t want to spoil the experience for iPad users... At least if I could force Android only to open the content differently.

    Thanks in advance.

    PS: I have the Gold customer service, but apparently this means I have no email or chat support... only phone. Whan was gold cheap?.
    "Sir with adobe support policies here, we do not support or contact customer, s because it is a specific Department available by phone, I wish I could help you here, but with support policies is not allowing me to move forward"

    It is unfortunately not possible to force links custom HTML content to open in the browser on the device. This can only be achieved by using the options for the hyperlinks created with the folio overlay Panel.

    The feature has been considered by our teams of product but still don't have product.

  • How can I cut a line that intersects a circle, as the rays to prune away a hub?

    When I use the circle tool adjusts the hub off the shelves. How do the opposite, rays away from the hub? (Novice, CS3, XP)

    Mike, if I understand you correctly, then all you need to do is invert the selection.   Select > Inverse or ' Shift Ctrl I '

    If I hurt myself, then download an example image would be useful.

  • Line that auto cross

    I was looking at the previous posts regarding how to determine if a LINE intersects itself...

    and the orientation was use sdo_intersection to do a free intersection on the line (i.e. pass in the same line with two args)

    then use sdo_getvertices and County

    I tried to do however get (what I think) is the strange results.

    Two examples:

    In an example here, I have a line that starts and ends at the same point, and the point that has a count > 1 is not the starting point / end.

    Select t.x, t.y, count (*) total

    Of

    TABLE)

    () sdo_util.getVertices

    sdo_geom. () SDO_INTERSECTION

    (select SDO_GEOMETRY (2002, 8265, NULL, SDO_ELEM_INFO_ARRAY (1,2,1), SDO_ORDINATE_ARRAY ()))

    -122.3117777778, 47.4498888889,

    -122.3, 47.45,

    -122.5375277777,48.7926944444,

    -122.3117777778, 47.4498888889

    () as double geom)

    ,

    (select SDO_GEOMETRY (2002, 8265, NULL, SDO_ELEM_INFO_ARRAY (1,2,1), SDO_ORDINATE_ARRAY ()))

    -122.3117777778, 47.4498888889,

    -122.3, 47.45,

    -122.5375277777,48.7926944444,

    -122.3117777778, 47.4498888889

    () as double geom)

    0.005))

    ) t

    Group of t.x, t.y;

    The above returns this point as the point of intersection free?

    -122.5375277777,48.7926944444

    I also have a more complex example that contains a line with many points, I'm expecting TWO x, y of the points as a free intersection points...

    There are THREE of them.  The I wasn't expecting to have a number of 2 is - 122.5903, 48.8563

    Based on below why would '-122.5903, 48.8563' be considered a free intersection point?

    Select t.x, t.y, count (*) total

    Of

    TABLE)

    () sdo_util.getVertices

    sdo_geom. () SDO_INTERSECTION

    (select SDO_GEOMETRY (2002, 8265, NULL, SDO_ELEM_INFO_ARRAY (1,2,1), SDO_ORDINATE_ARRAY ()))

    -122.3117777778, 47.4498888889,-122.2955, 47.7347,-122.293, 47.8181,-122.2904, 47.9015,-122.2879, 47.9849,-122.3108, 48.0519,-122.3332, 48.1356,-122.3808, 48.2197,-122.3788, 48.2864,-122.4015, 48.3701,-122.4247, 48.4371,-122.4732, 48.5045,-122.5222, 48.5551,-122.5209, 48.6052,-122.5448, 48.6555,-122.5435, 48.7055,-122.5431, 48.7222,-122.5418, 48.7723,-122.5903, 48.8563,-122.6422, 48.8068,-122.6434, 48.7567,-122.6198, 48.6897,-122.544, 48.6889,-122.5431, 48.7222,-122.5667, 48.7892,-122.6426, 48.7901,-122.6695, 48.7236,-122.6711, 48.6569,-122.6731, 48.5735,-122.7002, 48.4903,-122.3117777778 47.4498888889

    () as double geom)

    ,

    (select SDO_GEOMETRY (2002, 8265, NULL, SDO_ELEM_INFO_ARRAY (1,2,1), SDO_ORDINATE_ARRAY ()))

    -122.3117777778, 47.4498888889,-122.2955, 47.7347,-122.293, 47.8181,-122.2904, 47.9015,-122.2879, 47.9849,-122.3108, 48.0519,-122.3332, 48.1356,-122.3808, 48.2197,-122.3788, 48.2864,-122.4015, 48.3701,-122.4247, 48.4371,-122.4732, 48.5045,-122.5222, 48.5551,-122.5209, 48.6052,-122.5448, 48.6555,-122.5435, 48.7055,-122.5431, 48.7222,-122.5418, 48.7723,-122.5903, 48.8563,-122.6422, 48.8068,-122.6434, 48.7567,-122.6198, 48.6897,-122.544, 48.6889,-122.5431, 48.7222,-122.5667, 48.7892,-122.6426, 48.7901,-122.6695, 48.7236,-122.6711, 48.6569,-122.6731, 48.5735,-122.7002, 48.4903,-122.3117777778 47.4498888889

    () as double geom)

    0.005))

    ) t

    Group of t.x, t.y;

    I could do something wrong but I wanted to see if the experts knew why these two example of free intersection tests do not seem to return the results, I expect.

    Thanks in advance

    See you soon

    Look at the geometry out of just sdo_geom. SDO_INTERSECTION (no count and not sdo_util.getVertices). Both your examples are closed loops, and the SDO_INTERSECT is producing a reorganization but closed loop, it starts at a different point. By definition, a closed loop has the Summit even at the beginning and at the end, so the starting point will be a number two. The Geometry produced by sdo_geom. SDO_INTERSECTION is a legitimate topological representation of the intersection of the two loops: this is another representation of the object of the geometic.

    I conclude that the SDO_INTERSECTION trick for line self intersections requires more work where the line is a closed loop. If you know that the input is a closed circuit, so I think excluding the last Summit of the intersection works:

    Select t.x, t.y, count (*) total

    de)

    Select sdo_geom. () SDO_INTERSECTION

    SDO_GEOMETRY (2002, 8265, NULL, SDO_ELEM_INFO_ARRAY (1,2,1), SDO_ORDINATE_ARRAY ())

    -122.3117777778, 47.4498888889,

    -122.3, 47.45,

    -122.5375277777,48.7926944444,

    -122.3117777778, 47.4498888889

    ))

    ,

    SDO_GEOMETRY (2002, 8265, NULL, SDO_ELEM_INFO_ARRAY (1,2,1), SDO_ORDINATE_ARRAY ())

    -122.3117777778, 47.4498888889,

    -122.3, 47.45,

    -122.5375277777,48.7926944444,

    -122.3117777778, 47.4498888889

    ))

    0.0001) I

    the double) ii

    , ARRAY)

    t sdo_util.getVertices (II.i))

    where rownum<>

    Group of t.x, t.y

    Incidentally, you should use a smaller tolerance, tolerance 0.005 tell 0.0001 - there are other free intersections that were not given by the SDO_INTERSECTION Tower. The line between - 122.5667, 48.7892 and - 122.6426, 48.7901 is less than 0, 05 - 122.5903, 48.8563

  • The number of rows that can be retrieved in the Discoverer report

    Hi all

    Is there a maximum limit on the number of lines that can be retrieved in the Scout report.

    Kind regards
    Ankur

    Hi John,.

    "Is there an upper limit for the number of records retrieved by discoverer?

    There is no upper limit for the extraction of the records. IF you count very well systems you can do millions and billions. I don't so much think that those millions will be retrieved, if so recovered it will give you memory.

    go to the query governor, and to restrict the DataSet to retrieve any value as millions or billions.

    I hope this helps you!

    Best wishes
    Murielle.

  • I would like to know the command line options that are available to mspaint. I in bulk of images, I want to open in paint and then save it in jpg format in the paint.

    Hello

    I would like to know the command line options that are available to mspaint.
    I in bulk of images, I want to open in paint and then save it in jpg format in the paint.
    I want a script batch for the above procedure. Can anyone suggest me the script to do the same.

    Thank you
    Bodin

    original title: ms paint command line options

    Neither Windows XP nor paint offers all these capabilities.

    "BinduS" wrote in the new message: * e-mail address is removed from the privacy * _xp...

    Hello

    I would like to know the command line options that are avaulable to mspaint.
    I in bulk of images, I want to open in paint and then save it in jpg format in the paint.
    I want a script batch for the above procedure. Can anyone suggest me the script to do the same.

    Thank you
    Bodin
    - http://answers.microsoft.com/message/04b8dfae-1fa5-42db-81c2-b042652ecfc8
    Meta tags: images; windows_xp

    Tuesday April 10, 2012 08:23:14 + 0000: CreateMessage BinduS

  • I can't create a shortcut to the site on my desktop, when I click on the url bar I can drag on the browser to open a new, but as I drag him on my desktop I get the circle with the line through it, one that looks like a no entry sign. Help?

    I can't create a shortcut to the site on my desktop, when I click on the url bar I can drag on the browser to open a new, but as I drag him on my desktop I get the circle with the line through it, one that looks like a no entry sign. Help

    Try to drag the image to id web site (favicon) on the left side of the address bar, instead of the URL.

Maybe you are looking for