Can I make a chart automatically source data from different parts of a table?

Hi! I have a chart that shows data entered into one row across several columns of a table. I want the chart to automatically display information from the next row down once data has been entered into all fields of the first row without the chart displaying two sets of data i.e. just the second row only. I would greatly appreciate any ideas as I've hit a total roadblock with this. Thanks!

Hi gsnwosu,
I don't know of any way that Numbers can predict your next move! You must enter all your data and then select cells and create a chart. Here is a Table with a Header Row and two Rows of data:
You don't say what kind of chart you want. Here is a bar chart using data from Row 2. Select Row 2 by clicking once on the grey Row number (2) and choose a chart type (bar chart here):
Ignore the "Chart 3" label. I had three goes at this!
Click on the chart to select it:
then drag the Row (or Cells) selection down to Row 3 for a new chart (Oranges):
Regards,
Ian.
Message was edited by: Yellowbox. then drag the Row (or Cells) selection down to Row 3 for a new chart (Oranges):

Similar Messages

  • How can I make tree view for hierarchical data from select with connect by?

    If we have selected hierachy with connect by clause, how can we make it to see in tree view?

    You can't do this using the ADF, Tree Binding used by JHeadstart.
    However, If you have a recursive relationship (for example managerid) you can get a tree what you want as follows:
    - create one root ViewObject that returns the top-level employees without a manager by setting the where clause to managerid=null
    - create a second ViewObject that simply queries all employees
    - Create a ViewLink between the two view objects, and create a nested VO usage in the app module for the second view object
    - Create corresponding nested group in the application definition file and set the layout style to "tree-form" on both groups.
    See Developers Guide, chapter 3, section recursive trees for more info.
    Steven Davelaar,
    JHeadstart Team.

  • How can I create a diagram where equal data from different cells will be added to one sector?

    Hi,
    I'm a new Mac user, so I have a lot of problems and questions every day. Moving to Mac from PC is not an easy thing)
    Here is my problem:
    I need to create a few diagrams for my science work, but can't correct one mistake. Every time one data from one cell from the table takes its own place in the diagram. But I need to ceparate equal data to show it is one section.
    An example:
    Sex
    Age
    Female
    18
    Female
    18
    Female
    18
    Female
    25
    Female
    30
    We need to create a diagram to show that we have
    60% - 18 years
    20% - 25 years
    20% - 30 years
    But Numbers doesn't show it that way. Here how it does:
    So please help me. How can I do that?

    Hi ProCauda,
    Some example data of people and their age:
    The COUNTIF function will give the number of people of each age.
    In another table, B2 contains this formula (and Fill Down to the bottom of B)
    =COUNTIF(Table 1::B,"="&A2)
    In this example, 3 people are 18 years old, 0 people are 19 years old, and so on. Use this table to calculate each age as the % of the total, then use that as the data for your diagram (graph, chart).
    Regards,
    Ian.

  • Distinct data from different columns of a table-Single query

    I have a table with different columns. Each of these columns have entries. A particular column, say, a column called name can have same entries more than one time. Likewise other columns can also have same entries more than once. My requirement is to have distinct entries from each of these columns using a single query, such that , for eg; the name column will contain the name George only once on retrieval. Place column will have the place Newyork only once...like that...but Newyork and newyork should be treated different(likewise in other columns also ie; case sensitive). I want to retrieve the above said using a single query from a table. Kindly help.
    Regards,
    Anees

    You're asking a SQL question in a JDBC forum. Look for a SQL forum. The website of the database manfactuer may have a SQL forum/mailinglist.

  • Ck source data from BW side

    HI,
    I have a question ... How can we see the SAP HR  source data from BW . I dont want to check the PSA. Is there any option or shall I have to go directly to the source system?
    can we check the Source data through RSDS from BW side.?

    Hi Pranita,
    You can not see source data from BW unless it is loaded in BW. Before loading, you can check using tcode RSA3 and giving datasource name in source system. When data is loaded to BW you need to check PSA data to view source data that came into BW.
    Tcode RSDS is for datasource repository. Here you can change/create/delete datasource. But you can not check data of a datasource.
    Table RSDS gives information about datasources, not the content of datasources.
    The table RSDSEG you mentioned is wrong. The correct table name is RSDSSEG. This tables gives the corresponding PSA table technical name of a datasource.
    Do one thing. Use table RSDSSEG and give your datasource name. There you can easily view the PSA table technical name. Use this table name and check table contents from SE16. Every time you can directly go to SE16 and check this table content to view source data that came to PSA.
    Thanks,
    Indrashis

  • Retrieving data from Excel format to internal table(deep structure)

    hi all,
    can anybody help me how to Retrieving data from Excel format to internal table(deep structure)
    and if u have any sample code for that please send it.
    my internal table is like this
    DATA: BEGIN OF ty_text,
    vbeln TYPE vbeln,
    posnr TYPE posnr,
    seqno TYPE seqno,
    textid TYPE tdid,
    tdline TYPE tdline,
    END OF ty_text.
    DATA: BEGIN OF ty_item,
    vbeln TYPE vbeln,
    posnr TYPE posnr,
    dispct1(16),
    dispct2(16),
    dispct3(16),
    text LIKE table of ty_text,
    END OF ty_item.

    hi,
    check this code
    TABLES:zmatnr.
    TYPE-POOLS  truxs.
    DATA : itab LIKE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    DATA row LIKE alsmex_tabline-row.
    data : gi_final like zmatnr occurs 0 with header line.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETER : pfname LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pfname.
      PERFORM search.
    START-OF-SELECTION.
    perform process.
    form process.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = pfname
          i_begin_col             = 1
          i_begin_row             = 2
          i_end_col               = 12
          i_end_row               = 65000
        TABLES
          intern                  = itab
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      describe table itab lines itab_count.
       row = 1.
      loop at itab.
        if itab-row <> row.
          append gi_final.
          clear gi_final.
        endif.
        case itab-col.
          when '1'.
          gi_final-MATNR = itab-value.
          when '2'.
           gi_final-Maktx = itab-value.
          endcase.
        row = itab-row.
      endloop.
      append gi_final.
      clear gi_final.
    endform.
    FORM search .
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          static    = 'X'
        CHANGING
          file_name = pfname.
    ENDFORM.
    regards
    siva

  • I have several issues that I hope you can help me out with. I am a professional photographer with a Mac with OS X 10.9.4: - I can only make ONE contact sheet in CS6 (from AUTOMATE) from pictures indicated in Bridge. If I want to make another contact sheet

    I have several issues that I hope you can help me out with. I am a professional photographer with a Mac with OS X 10.9.4:
    - I can only make ONE contact sheet in CS6 (from AUTOMATE) from pictures indicated in Bridge. If I want to make another contact sheet I need to shut down and restart CS6.
    - Camera RAW: if I change any setting in Camera RAW (except exposure), having first optimized the exposure, the exposure will automatically return to zero. Sometimes when I've set exposure and cropped the picture in Camera RAW Plug-In, the effects are lost just by opening the picture in CS6.
    - Sometimes if I crop a picture in Camera RAW, it may be impossible to open it again from Bridge!
    - I cannot do lens corrections in Camera RAW, at all. The Camera RAW comment is that "it cannot load the correct lens type". Why?

    Are you writing that when you select  a large number of images in the bridge  like a hundred thumbnails  when you then use Bridge menu Tools>Photoshop>Contact Sheet II that Photoshop only produces a single contact sheet for the first few thumbnails and fails to produce additional contact sheets for the other selected thumbnails? Photoshop contact sheet II script should create as many contact sheet as needed  for the numbers of thumbnails selected.  Perhaps the script is hung or you have exhausted  your machine resources.
    ACR Crop tool does not crop the RAW file it records crop settings to be used during the conversion process.    Camera RAW DATA is not altered.  The only changes made to RAW Files is ACR Metadata may be added.  Anything you do in ACR can be un-done in ACR.    If you can not open a RAW File in ACR the Files is either corrupt or from a new camera ACR does not support yet.  ACR should not corrupt RAW files.
    If you do not have a lens profile for ACR I think you should still be able to do lens correction manually in ACR.
    Some of what you write I don't follow could you post some screen captures of your problems often a picture helps.

  • How can I make a survey automatically identify the user in the results?

    How can I make a survey automatically identify the user in the results (so that it won't be anonymous)?

    I am not sure what information to provide.  Here is what I am trying to do.  I am trying to create an HR questionnaire with multiple choice questions and several multiline textboxes to capture comments.  I want to send it out by email address and/or embed the questionnaire somewhere on the company's intranet website.  But we don't want the questionnaire to be anonymous. If someone makes a particular comment, we want to be able to communicate with the person who made that particular comment.  How would we be able to trace the person? By email address, or by user ID?

  • When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

    When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

    When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

  • How can I make a chart ignore cells until their value is changed from 0?

    In the corresponding table, I used conditional formatting to hide zeros in the highlighted row by conditionally changing the text color to that of the table background. However, the zero value's are still represented in the corresponding chart as you can see in the attached photo . How can I make the chart ignore certain cells only until their values are changed from zero? Thanks in advance!
    Ryan

    Hi Ryan,
    Leave the cells empty until they're needed, or, if the cells' contents are determined by a formula, revise the formula to insert a null string if the value is zero.
    =IF(your formula = 0, "", your formula)
    Regards,
    Barry

  • Can I make Skype quit automatically when I close i...

    I'm sick of having to close it on the task bar and then confirm I don't want it running any more.
    I've already confirmed I wanted to log out and close the program, why is it still running?
    I cannot find an option to quit from the menu whilst running, but I imaging it's buried somewhere.
    Could somebldy tell me how to either 'quit' automatically when I close the program, or if there is an option to close and quit while it's open?
    Failing that could I find out why it's do ******* important that it stays running in the backlground after I close it the first time?
    Solved!
    Go to Solution.

    This screenshot (http://community.skype.com/t5/Windows-desktop-client/Can-I-make-Skype-quit-automatically-when-I-clos... is from the currently latest Skype 6.7.0.102 version, but exactly the same window is shown with any previous version too.
    If you sign out of Skype before quitting, then the “Do not ask me again” option will not be shown. You don’t need to sign out before quitting!!!!

  • Record about my phone (bought in Verizon store and connected to Verizon for 4 years) has been corrupted and now I can not make any changes to my data plan. Several sessions with the technical support and management have not resolved this issue. Each time

    Record about my phone (bought in Verizon store and connected to Verizon for 4 years) has been corrupted and now I can not make any changes to my data plan. Several sessions with the technical support and management have not resolved this issue. Each time technical people and top managers promised that this issue will be resolve tomorrow and they will cal me. Nothing happend!! I can not even cancel my service not just to upgrade it. Completely locked. 
    Any advice?
    Thanks.
    Alex.

    Cannot figure out what your talking about since it makes no sense.
    If you are the account owner you can go to the My Verizon web portal http://www.verizonwireless.com
    You must log in with your cell number and your my Verizon portal password. Not the account pin.
    Once there you can change your plan and services. However repeated incorrect login attempts will lock you out of the site. It a fraud prevention measure.
    1-800-922-0204 call support with your cell number and or account number and account pin and they can assist you.
    If you don't have the information then there is nothing they can do.
    If you can verify who you are they may be able to reset your account access. But only if you are the account owner.
    Good Luck

  • How can I make my Introduction_mc automatically disappear after 10 Seconds and load Home_mc?

    Hi,
    How can I make my Introduction_mc automatically disappear after 10 Seconds and load Home_mc (automatically)? I don't want user to change by himself this Introduction page. It should be done automatically.
    What is the procedure and code to achieve it, please?
    Thanks.

    Hi,
    I gues you are using AS2.0, then use setInterval, in AS3.0 user Timer Class.
    AS2.0
    var interval:Number = setInterval(doThis,10000);//in milliseconds
    function doThis():Void{
    //do something;
    AS3.0
    var timer:Timer = new Timer(10000, 1);
    timer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerCompleteHandler, false, 0, true )
    function onTimerCompleteHandler(event:TimerEvent):void{
    //do something;
    For details: http://blogs.adobe.com/pdehaan/2006/07/using_the_timer_class_in_actio.html
    Warm Regards
    Deepanjan Das
    http://deepanjandas.wordpress.com

  • How can i make firefox reload automaticly every hour?!!!

    how can i make firefox reload automaticly every hour?!!!
    I download add-ons Reload Every
    how to manage it((setting))?!!!
    thanks addvance>>

    You installed the ReloadEvery Extension rather and not downloaded it to disk.
    To set the reload time for the tab you are viewing you can right-click the page and select a time.
    http://reloadevery.mozdev.org/
    http://reloadevery.mozdev.org/screenshots.html

  • Can you make core center automatically close after being called on startup?

    Can you make core center automatically close after being called on startup so it can set cpu fan speed to a slower fixed speed then exit?
    If core center really cant do such a simple task then can speedfan or another program?

    Quote from: bassmadrigal on 13-July-05, 07:42:36
    Why don't you want them running. Speedfan has a very small footprint.
    Just seems unnecesary seeming as it does its task as soon as it runs and its changes then stay applied. Speed fan is probably better but core center takes 10mb.
    Quote from: syar2003 on 13-July-05, 07:57:02
    You dont have to have it running to set a user specified fan rpm .
    Once it's set it is stored in the corecell/cmos chip on the motherboard .(until a cmos reset) .
    So to answer your question .
    There is no need to have it autostarted at each boot ...
    Thats how i have used it .
    Only reason to have it running is with MSI's "CnQ" control of the fan , varies with the load of the processor
    Thats strange for me the speed resets to default as soon as I restart my pc (about when the bios engages which is however tangibly after the graphics card fan revves up to its full speed). Depending on the temperature of the proccessor it goes to 3300rpm (less than 42c) or 4500rpm (too loud for ~45c IMO and MSIs "cool&quiet" option seems to agree, it doesn't even set it as high as 3300rpm)

Maybe you are looking for

  • DSO to Cube Delta Failure

    Hi All We appear to have a major problem. Yesterday the invoice delta from DSO to Cube failed. My colleage traced the problem to invalid characters in the PSA. However it had loaded successfully into the DSO (I dont know why cos it usually fails into

  • Error in CV02N while changing the status.

    Hi Experts, We are getting a error while changing the status of technical change document that " Inconsistent characteristic value assignment" .The document is in status "in use" and we are trying to change it to " old version" using T code CV02N. wh

  • Pricing not determined in Delivery

    Hi All We want pricing of Sales Order to be copied in Delivery. We assigned the Pricing Procedure to our Delivery Document in customising. Now when we try to create delivery with ref. to Sale Order the pricing is coming perfectly fine, but the Tax (V

  • Updates to the Ipod touch

    I heard there were coming new updates to the iPod touch. Is there someone that know when these updates are released

  • Where is the batch description in the new Photo?

    Where is the batch editing description and title we used in iPhoto? I did find how to edit description in a single image, but where is the batch? I really need it in my workflow, having to expor lots of photo's on a daily basis to external corporate