Totally mystified by charts

I get the impression that there's some way to create a chart from data in a table. When I try to do this, the values that show up in the chart are completely different.
Say I have a table like this:
Dogs Cats Bears Trucks
10 40 50 16
20 40 30 6
30 40 20 2
(I want to show that dogs are on the rise, trucks and bears are getting fewer, and cats remain the same.)
A chart created from this data has these sort of numbers in it:
3 2 7 4
5 2 6 3
6 2 2 2
I am totally confused. What am I doing wrong? Any help appreciated. Thanks!

santra,
In testing my response to your comment/question, I found that my last answer wasn't entirely accurate. It IS possible to paste the entire table to the Chart Data Editor at once.
No, the Chart doesn't update from your Table directly or automatically. This is because the Chart only takes data from the Chart Data Editor. To get your updated Table data to the Chart, Select the range of cells corresponding to the Chart Data, Edit > Copy, Click on the Chart to select it and activate the Chart Data Editor, Click on the first header cell in the CDE, Edit > Paste. This should update your CDE and your Chart to match your Table.
Jerry

Similar Messages

  • How to show Grand total values in Chart view....

    Hi,
    I have a crazy req. like i need to show grand totals values also on the chart view along with the normal metrics.
    column Metric1 Metric2
    AAA 10 20
    BBB 30 15
    CCC 20 15
    TOTAL 60 50
    so here i need the values 60 and 50 also also to be displayed in a line graph
    cheers

    Pretty simple to achieve :)
    In your Pivot view, under Rows section where you have column dimensions like AAA,BBB etc...create a new calculated item say Grand Total with function as 'formula' and formula as sum(*). This will give you a new row with totals. Now Chart Pivoted Results and you are done.
    Hope answered

  • Chart: Is it possible to chart multiple running totals on 1 chart?

    Would it be possible to chart 6 distinct running totals on 1 bar chart and a dynamic 6 month rolling date driven x-axis?  Having the totals reset on a date change does not help.  Any help will be greatly appreciated.  Here are the the first two running totals:
    Snapshot-0
    <= and
            IsNull()
                OR
            >=
    Snapshot-1
    <= DateAdd("m", -1, ) and
            IsNull()
                OR
            >= DateAdd("m", -1, )

    Hi Eddie,
    Here are a couple of white papers for you. This might be of help.
    1. [Chart Changes from Crystal Reports 8.5, 9 and 10 to XI|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/707c1977-891e-2b10-f7a3-a669e59b67ea]
    2. [Charting on Print-Time Formulas|http://resources.businessobjects.com/support/communitycs/TechnicalPapers/cr9_charting_print_time_formulas.pdf?recDnlReq=Record&dnlPath=cr9_charting_print_time_formulas.pdf]
    Please do ket us know if this helps.
    Cheers!
    Abhishek Jain.

  • Stacked Column Chart (Total and Combination Chart)

    Hi,
    I tried to find the answer at old posting, but failed to find proper solution.
    So here I go again with the same old problems:
    1. Any method / trick to display total on top of each stacked column ?
        (Label is not an option, since it is static and will not move following the height of the stacked bar).
    2. Any method / trick to combine stacked column chart with line chart ?
        (Overlay is not an option, because I think it is too tedious to play around with color and border)
    Thanks for the bandwidth.
    Regards.
    NB: Are there any XCelcius add-on for those 2 functions ?

    Hi Yudie,
    Can you get compromised in the following way ?
    In the X Axis labels, you can get the values concatenated dynamically and displayed. Example given below:
    2008          2009          2010
    P180         P250         P280
    A172        A263         A265
    Whereas P denotes to Plan and A denodes Actuals.  Above to this labels stacked colum wil be there as usual.
    Consider and revert, in case you need any more clarification on this.
    Keep posting.
    With best wishes
    BaaRaa.
    Edited by: Baskar Rajagopalan on Feb 23, 2011 3:36 PM

  • No success printing landscape - totally mystified

    I can print out a component in portrait mode without any problem, but the same component printed in Landscape or Reverse Landscape mode gives rise to an ImagingOpException: Unable to transform src image. I can't see that I'm doing anything weird and have not been able to find any examples to indicate that landscape printing is a problem. Where is this exception coming from? What is the matter with my component? Is double-buffering an issue? This has me completely stumped.
    Thanks.
    David

    Doesn't sound like the error is from the printing
    code itself. Its from some general imaging code that
    is in java.awt.image.AffineTransformOp.
    The printing code needs to call this to rotate
    the image on the page.
    Its not clear if you are double-buffering.
    If you are using Component.printAll(..) then
    you should not be double bufering.

  • Chart Cummulative Percentage Total?

    Post Author: Kanshouzhe
    CA Forum: Charts and Graphs
    I have seen one other post for one similar to this... but no answer. 
    I have created a Crystal 9 bar chart showing the percentage of days to resolve helpdesk tickets.  Nice... but I really want to create a running total (cummulative) of the percentages.  I have been able to create a formula for the cummulative total, but the chart excludes my formula:
    WhilePrintingRecords;Numbervar TotalPercent;TotalPercent := TotalPercent + (DistinctCount (, {@DaysOpen})/DistinctCount ())*100;
    I have tried creating various formulas, running total Summaries and combinations to no avail.  Could someone please help me skin this cat?  Thanks!

    paulclark wrote:
    I have a spreadsheet full of clients from different cities, and I'd like to create a chart (3D ideally) showing which cities have the most clients and which have the fewest.
    For example, 158 live in City A, 132 City B all the way down to 1 client in City V.
    Currently my spreadsheet has first, last, street, ZIP, city, state, misc info A, misc info B, misc info C Etc Etc.
    I may also like to create a chart showing totals of one of the Misc columns.
    Use a subsidiary table to collect the names of the cities in your list, and to count them. Chart the results. Here's an example.
    Cities are listed in column B, and may be in any order. Spelling counts, as the formula in column E identifies each city by the exact contents of the cell.
    Column E contains a formula that counts the number of different entries in column B, and marks the row containing the first occurrence of each with a serial number.
    The formula in E2 is
    =IF(COUNTIF($B$1:B2,B)=1,MAX($E$1:E1)+1,"")
    Fill down to the end of the column.
    Column A in the second table (For Graph) contains a formula that constructs a reference to the cell containing the first occurrence of each City name on the Main table, and copies that name to it's cell.
    The formula in A2 is
    =IFERROR(OFFSET(Main :: $A$1,MATCH(ROW()-1,Main :: $E,0)-1,1),"")
    Fill down to the end of the column.
    Column B contains a formula that counts all occurrences in column B of the Main table of the name in its row in column A.
    The formula in B2 is
    =IF(COUNTIF(Main :: B,A2)>0,COUNTIF(Main :: B,A2),"")
    Fill down to the end of the column.
    Regards,
    Barry
    PS: Descriptions of each function used, and further examples of their use can be found in the iWork Formulas and Functions User Guide. You can download the guide (and the Numbers '09 User Guide) through the Help menu in Numbers.
    B

  • Charting Running Totals as Percentage

    I'm trying to show a running total as a percent of another running total in a chart.
    The report details have a unit ID (serial Number) and a flag indicating whether or not the unit went through rework.
    Running total 1 is a distinct count of unit ID, running total 2 is a distinct count of unit ID where the flag is No.
    I can make a chart that shows both counts, but running total 2 is always a count, and I'd like to show it as a percent of running total 1.
    I can create a formula that shows total2 as a percent of total 1 and put this in the group footer - but I can't chart on that formula.
    Is what I'm trying to do possible?
    Thanks
    Edited by: Doug McLauchlan on Mar 26, 2010 7:22 PM - Spelling

    I finally found an answer here:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f055d37d-2ddc-2c10-6ea3-d454e6f3bf94
    The technique involves building your charted values into strings and passing them to a sub-report to do the charting.
    I found I had to make several changes to way the report works in my situation - mainly because of grouping.

  • Stacked bar chart showing zeros when there is no data

    Hi,
    I am developing a stacked bar chart which plots month vs sales of 3 different products.
    I am showing data points and the total sales on chart.  Every thing looks good except the zeros displayed on the chart if there are no sales for a product for a particular month... how to get rid of these zeros ? i mean how to display the value only if there is some data ?
    Thanks

    Sounds like you have a left outer join from your product table to the sales data. Thus product is listed even when no data present.
    Try changing join to Equal
    Ian

  • Calender view using charts

    Hello everyone,
    I am trying to create a calender view for a week using charts with days on x axis and hours on y axis.
    I would like to highlight the meetings in any color to give a weekly view. But I am not able to highlight more than one meeting in a single day.
    I am totally new to charts. Please advise me what is the best axis and series to be implemented for the case.
    Thanks a lot in advance.
    This is what I am using
    [Bindable]
      private var expensesAC:ArrayCollection = new ArrayCollection( [
      { Date: "25-Jul", Open: 40.75,  High: 40.75, Low: 40.24, Close:40.31},
      { Date: "26-Jul", Open: 39.98,  High: 40.78, Low: 39.97, Close:40.34},
      { Date: "27-Jul", Open: 40.38,  High: 40.66, Low: 40, Close:40.63},
      { Date: "28-Jul", Open: 40.49,  High: 40.99, Low: 40.3, Close:40.98},
      { Date: "29-Jul", Open: 40.13,  High: 40.4, Low: 39.65, Close:39.95},
      { Date: "1-Aug", Open: 39.00,  High: 39.50, Low: 38.7, Close:38.6},
      { Date: "2-Aug", Open: 38.68,  High: 39.34, Low: 37.75, Close:38.84},
      { Date: "3-Aug", Open: 38.76,  High: 38.76, Low: 38.03, Close:38.12},
      { Date: "4-Aug", Open: 37.98,  High: 37.98, Low: 36.56, Close:36.69},                      
      { Date: "5-Aug", Open: 36.61,  High: 37, Low: 36.48, Close:36.86} ]);
    <mx:CandlestickChart id="candlestickchart"
      height="100%"
      showDataTipTargets="false"
      width="100%"
      paddingLeft="5" columnWidthRatio="1"
      showDataTips="true"
      dataProvider="{expensesAC}" dataTipFunction="dataTipFunction"
      >           
      <mx:verticalAxis>
      <mx:LinearAxis id="vaxis" baseAtZero="false" title="Price" direction="inverted"/>
      </mx:verticalAxis>
      <mx:horizontalAxis>
      <mx:CategoryAxis id="haxis" categoryField="Date" title="Date"/>
      </mx:horizontalAxis>
      <mx:horizontalAxisRenderers>
      <mx:AxisRenderer axis="{haxis}" canDropLabels="true" placement="top"/>
      </mx:horizontalAxisRenderers>
      <mx:series>
      <mx:CandlestickSeries
      openField="Low"
      highField="Close"
      lowField="Low"
      closeField="Close"
      fill="{up}"
      declineFill="{down}"
      stroke="{wick}"
      boxStroke="{box}" dataProvider="{expensesAC}"
      />
       </mx:series>
      </mx:CandlestickChart>

    Why are you using a Chart component to render calendar data? There are some pretty powerful calendar components that are built for this purpose , ours included : Flexicious | Flex Calendar Component - New with Flexicious 3.1

  • FCP Novice needs help with video quality and FCP 5!!

    Hi,
    I have a real problme that I cannot seem to fix. I think its because I am doing something really wrong!
    I have a Sony HC42E MiniDV Camcorder which by default records video in full widescreen. I recorded several tapes this way and have now begun trying to edit them in FCP 5.04 (Tiger 10.4.6). Whenever I log and capture my clips they appear to be fuzzzy and unclear on the Mac monitor whilst being totally crisp and sharp on the camcorder viewfinder. I tried capturing using the DV PAL 48Khz Anamorphic Preset which keeps everything the right size (the final output needs to be true widescreen and not with black bars added) but the resulting video on screen is blurry and bitty. I then tried capturing using the DV PAL 720 x 576 normal preset and the video is a little clearer on the screen (for both presets I have chosen lower field dominance) but when I play back it plays back in widescreen on the mac canvas window but at 4:3 on the camera's viewfinder.
    I then assumed that maybe this is just becuase the mac screen (CRT by the way) doesn't use fields. So I exported the sequence as a QT movie using DV PAL 16:9 and used quicktime (OS9 Classic - my compressor has never worked because of the dreaded "unable to connect to baackground process" problem which I've never managed to correct) to convert it to MPEG2. When I import this as an asset into DVD Studio pro 4 and set the track size to 16:9 it comes through at the right aspect ratio. However it looks blurry on screen. Thinking that this will be fine on a TV I burned the disc - inserted it into my DVD player (a good one!) and watched it on my new 32" widescreen TV (a good one!) and the picture qualitty is poor. Its so much blurrier and bittier than the original footage looks when played through the camcorder's viewfinder!
    The final footaage looks like an old VHS recording that's a year or two old!
    Does anyone know how I can capture my footage in FCP with the maximum quality, edit it without quality loss and the export it for DVD again without such significant quality loss whilst all the time keeping it at proper 16:9 widescreen?
    Is there some presets I should be working to?
    I'm tearing my hair out! Help!

    Hi Guys,
    thanx for your replies.
    here's the latest:
    Brian, I followed your instructions and the DVD burned successfully. However the video quality of the dvd when viewed on my TV ('ve tried on all 3 of my tvs now) is still a lot poorer than the quicktime movie that was imported into DVDSP4. When I play the original QT Movie on my Mac CRT monitor it looks a little blurry and grainy because I guess its non interlaced however when viewed on an external Video monitor it looks great - very sharp.
    When I view the burned DVD on my television the picture quality looks like the non interlaced version of the original QT Movie that appeared on my Mac CRT and not the sharp interlaced (lower field) version that appeared on my external video monitor.
    Its almost like taking a sharp jpeg into Photoshop and applying a gaussian blur of about 0.3 followed by jepg compression compressing it down to 5% quality!
    I'm totally mystified. Can the conversion to Mpeg2 be removing all interlacing so that you get the less sharp computer monitor look? I just want the video on my final DVDs to be as good as the original source footage! I appreciate that along the way there might be loss of some quality but surely not that much?
    Does this make sense to you guys or am I still doing something very wrong?
    Robert: I have tried setting all manner of drives including a fresh external firewire HD with nothing on it (clean out of the box) but it doesn't seem to help.
    Brian: I tried the no network suggestion a few months back but I'm not sure if I got it right. At the moment I have broadband through an external speedtouch usb modem and am also connected (occasionally although not for the last 3 months) via a crossover cable to my PCs ethernet card. When I last tried the No Network solution I had immense trouble getting my internet to work again! Can you please help me by directing me to the best ay to do this while protecting my internet settings?
    any more help guys would be greatfully appreciated.

  • How do you add a shortcut to the desktop with ios5?

    Thanks to Itunes helpfully corrupting my Ipad backup and crashing the upgrade to ios5.1 (or whatever) this morning, I've had to completely rebuild my ipad from scratch.  Thanks, I didn't have anything better to do today than try to get all my apps and things set up the way I like again!  And, I didn't have any important data or anything... what the ****, if an update can wipe the ipad AND corrupt the backup, there is a serious problem with this whole thing!
    Anyway, does anyone know how to get a bookmark to a webpage on the desktop?  It used to be that you could click the little "plus" button and just select to put the shortcut on the desktop, but you can't do that anymore, and none of my searches have come up with anything that isn't referring to pre-ios5 versions of safari on the ipad...
    Thanks!

    It is totally weird that you no longer have that feature in the Safari app. Have you tried the basics, restart, reset, quit the app, clear Safari.
    Go to Settings>Safari>Clear Cookies and Data. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Quit Safarai and restart - Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus (-) sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    I have seen some of the most bizarre, off the wall, mysterious issues on my iPad since I updated that it has me totally mystified in many ways. Very, very disappointing to say the least.

  • Develop Module Advancements in Lightroom 4 | What's New in Lightroom 4 | Adobe TV

    Learn how to create the highest quality photographs by taking advantage of new and improved global and local adjustments in the Lightroom 4 Develop module.
    http://adobe.ly/x7mwOK

    load an image and open the tone curve panel (you already did this probably).  at the lower right of the canvas you'll see a button with "!" on it.  click the button to convert to "2012 process".  wait.  when it is done if you *still* don't see the channel dropdown click the "edit tone curve" button to hide the sliders and *then* you should see the channel dropdown.
    I found this totally mystifying, but once I found it (luck) I get it...new features, new entries in the database or some other magic.  anyway the video sure didn't give me a hint.
    this will be my 5th try posting an answer to your question, hopefully this time it will work, no thanks to support, 5 times resetting the password, etc etc.

  • How can I automatically create calendar events using text from a Pages document?

    Hello,
    I'm looking for a way that I can automatically have calendar events created, by extracting dates and times from a table within a Pages document I have saved on my Mac.
    Currently, I record my working hours/dates on a Pages document in table format, so that I can record and ensure I receive payment for all hours I work.
    After finding out which shifts I have for the week, I insert the day, date, start time and end time (for each shift), into a table within a Pages document.
    I'm wondering if there is any way - such as through Automator, Apple Scripts, etc. - that I can then have the Calendar app automatically create events from that data - including the date, start and end times for each shift?
    Also, if possible, is there a way to set each event to automatically alert me at a chosen time (1 day, 2 days, etc.) beforehand?
    Here is an example of the layout of my document table:
    Date
    Start
    Finish
    Duration
    Saturday, 21 December 2013
    8:00 AM
    5:00 PM
    9:00 hrs
    Sunday, 22 December 2013
    9:00 AM
    6:00 PM
    9:00 hrs
    Monday, 23 December 2013
    12:00 PM
    9:00 PM
    9:00 hrs
    Tuesday, 24 December 2013
    12:00 PM
    6:00 PM
    6:00 hrs
    If anyone can help with this question, that would be greatly appreaciated, as then I could have my calendar automatically create and sync my work shifts across to my iPhone, iPad and Mac.
    Thanks in advance,
    John.

    I totally agree with you.
    Where are the fixes for a long string of bugs, glitches and user issues?
    Looking at the list of new "features" for the next OSX, Maverick (what a dumb name!), all I am seeing is Apple ripping off other peoples' ideas, something it swinges others mercilessly for.
    There is not one thing in Maverick that I don't already have, only more so, with 3rd party add-ons.
    Apple seems bereft of ideas now and I am totally mystified what it is doing with all that money and employees it has accumulated.
    Peter

  • Possible to have ApplicationControlBar appear above TitleWindow?

    This is Flex 3.4/AS3/FP9 question (not Gumbo)
    Is it possible to adjust the depth/display list properties such that a component (e.g., an ApplicationControlBar ) sits above a TitleWindow? Or to rephrase, have a TitleWindow (PopupManager) not be the highest element in the display list? For my purposes the Popup is non-modal.
    I'd rather look at extending a component (but which one? the ApplicationControlBar or the PopupManager?). I've looked at components like MDICanvas and MDIWindow, but there is a significant performance hit in our application when they are used.
    Alternatively, is it possible to limit a PopupManager's "impact" to a single component/container? i.e., It's confined to the launching containers bounds/depth?
    In the AS2 days I would have swapDepths after getNextHighestDepth(),
    I hope this question makes sense.
    Richard

    Hi Paul,
    If I understand you correctly you actually want to see the grand total on your chart as a separate line, right? Unfortunately Pivot Charts do not provide that out of the box. One option would be to manually create a "normal" chart from it as described
    here but I have not tried that yet.
    Another (in my opinion) nice option to solve this is to create an "artificial" all-element in one of your slicers. This could for example be accomplished by using a date table (instead of your month/year-fields from the fact table) that is related to
    the date-field from your fact-table. You would then add another element to that date-table such as the last line from this linked table:
    Year
    2008
    2009
    2010
    2011
    2012
    2013
    All (Average)
    Using this I created a new measure based on your existing CumPercent:
    =if(HASONEVALUE('Date'[Year]),
      if(values('Date'[Year])="All (Average)",
        calculate([CumPercent],all('Date'[Year])),[CumPercent]),[CumPercent])
    If you replace your existing measure with this new one and your StartYear with the new Year-Column from our date-table, an additional all-element will Ssow up on your Pivot Chart:
    Would that help?
    Regards,
    Julian
    Julian Wissel | BI for NAV @ http://en.navbi.com | Blog @ blog.navida.eu

  • "the iphone could not be synced because the sync session failed to start" error!

    I have been having all manner of problems synching my iPhone 4s; attempting to synch gets the dreaded ..."session failed"; synch appears to happen but doesn't; synch causes iTunes to hang requiring a force-quit etc etc.
    This has been going on for months & has been driving me insane. Only happens with this one phone, not our other iDevices.
    I tried every bit of trobleshooting advice I could find & nothing was working so I finally went to see a Genius at my local.
    He was totally mystified so after 1/2 an hour of discussion he replaced my phone with a new one thinking it must be some weird hardware fault.
    I plug the new phone in &... same problems.
    I then started to try & isolate every posible cause.
    I totally reinstalled iTunes, that didn't work. I removed all .plist files etc, that didn't work. So I started digging around in the iTunes files that hang around in the library folder & one by one I quarantined them, restarted iTunes, tried to synch etc etc.
    Finally I struck gold!
    I isolated the file iTunes Library Extras.itdb and on restart this file respawned & synch started instantly & finished perfectly.
    So in short... if you are having this problem try moving this file elsewhere and then restarting iTunes & your synch to see what happens!

    The way I fixed this (though I'm using a iTouch 4G): disconnect your iPhone from the computer, shut down iTunes, then reset your iPhone by holding the Power/Sleep & Home buttons together for 10 seconds. Restart iTunes, then when your iPhone restarts, reconnect it to the computer, and everything should work fine

Maybe you are looking for

  • My new 2013 iMac 21,5 how to calinrate the monitor ?

    Hey ! How to calibrate my monitor ?The images what was editing on my imac was totally different when looking it on other pc  , the colors was unsaturated how it should be or how it was on my imac.

  • HT201263 unable to restore because of connection not recognized

    I was able to follow all of these instructions to restore the Ipod until hit the Restore button. I then get a message that it was unable to connect to Itunes because of no internet connection. But I am connected. How do I get it to recognize the conn

  • MRRL  Document posting Date REg

    Dear All,                  In MRRL invoice verification through ERS  selection screen Posting date field is not available its always posting the documents on the system date. is is any possiblity to get the posting date in the selection screen?.. any

  • Concurrent Processes

    Hi, In R12, if i bring down services adstpall.sh, there are some concurrent managers and processes still running even after 15 minutes. I used to kill them. Is there a better way ? do I have to run cmclean.sql or bounce the database after killing pro

  • Unable to save calculated and restricted keyfigures

    hi all,            I am facing a strange problem where in , even though i try to save a calculated or a restricted key figure with a unique name the system throws a warning saying "the name already exists" and wouldn't allow me to  save the CKF or RK