One table-Multiple charts...same rules

I have one table documenting 36 weeks of information. I have six charts illustrating each six week segment. However, every six weeks I have to format each chart so all the colors (for the line graph) match up with the previous six weeks. Is there a way I can copy and paste the corresponding colors for each graphed item so that I do not have to redo the formating every six weeks?  

you should select an existing chart, then duplicate it (by copy/paste, or option drag,or <command>+d), then highlight the new chart and move the source data in the table
Here I duplicated my first chart (so I have two charts souced fromt he same data in the table):
Here I moved the data selector for the chart:

Similar Messages

  • Using more then one table/view in same Report

    Hi,
    I am using Discoverer Plus Version 9.0.4.43.15.
    Is it possible to use more then one table/view in a report without the tables/views being joined in any way? It would be like using two different datasets in the same report without the datasets having anything to do with one another. Right now when I select items from the available tab I can only pick tables that relate to one another in some way.
    Or is it possible to use more the one table in the same report? Each table using a different query/view/table.
    Thanks

    Spence,
    try following type of query using set operator UNION / UNION ALL:
    select col1,col2
    from t1
    union all
    select col1,col2
    from t2
    If you don't have restrictions then this is the best way.

  • Updating more than one table in the same region

    Hi all,
    I have a header and detail relationship created between to entities. I created an association between them. I have 2 views and a view link based on the 2 entities.
    I have built an update page and I'm able to display the detail and header fields in the same region and my update to the detail fields are being processed correctly. However, my update to the header field is not working. I'm not getting any error messages, just that my header field remain unchange even after modifying the value and clicked the submit button on my page.
    Any suggestiong as to where I might have made a mistake?

    Ok, I got it to work by creating an association between the 2 entity objects and create a view based on the 2 entities. However, my real requirement is to only update the header level entity attribute after performing validations on the detail level attribute. My question now is this,
    How do call the set method associated with the header entity from the detail EOImpl?
    Please help!

  • Can I display different tables at the same time?

    Hello all,
    This is probably a newbie question but is it possible to display different tables at the same time? I'm using SQL Developer 1.5.5 and I seem to be unable to display more than one table at the same time, whenever i chose to open another table, the old table disappears. In other words, the table display just switches to your new choice in the table list navigator. Any ideas anyone?
    Regards,
    wf

    Menu item "Tools -> Preferences -> Database -> ObjectViewer Parameters"; make sure "Automatically Freeze Object Viewer Windows" is checked.
    HTH.
    Ed. H.

  • I want to create a mail merge for address labels into a table, but when I fill a table with merge fields, it ends up creating multiple entries for the same address, rather than one table full of each address.

    ...but when I fill a table with merge fields, it ends up creating multiple entries for the same address, rather than one table full of each address. Please help.
    Thanks!

    That is a quirk of Pagesthat  it applies only one record per page.
    There is a way around this:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=245&highlight=labels &mforum=iworktipsntrick
    Peter

  • Using DATA_CELL and multiple queries into one table

    Hi WAD experts,
    I have been trying to work out how to combine multiple hidden query result sets in their own tables in the template, into one table displayed as if the data originated from one query.
    I have been looking at using the DATA_CELL method of "modify table" class.
    Has anyone had to do this before - and if so do you have any clues as to how best to do this ?
    Thanks
    Chris

    Here is what I want:
    Say I have a query that tells me about how many items were sold at a hardware store for each week. Then the output would look something like this:
    Week,Item,Num_Sold
    13,Hammer,15
    13,Nail,594
    13,Screw,398
    14,Hammer,16
    14,Nail,382
    14,Screw,331
    But I want my output to look like this:
    <space>,13,14 <-- these would be the week numbers
    Hammer,15,16
    Nail,594,382
    Screw,398,331
    I asked this same question in a SQL-only forum and one person responded that they did not know how to do that. But I figure that this is done often enough that there must be some Open Source program that can transform the output data into a table. As you can see, it's not a pure transform. It's more like I take one column, make that the x-axis, another column, make that the y-axis, and "plot" the data based on the two columns. It's kinda like taking 1D data and making it 2D. There's no existing open source program which does this? I figure that I could just give the program my SQL queries, specify some rule such as "Make the first column of the resultset the row, make the second column the column and create a table with the 3rd row, using the first two rows to map the 3rd row into the table". Note that I think this only works with 3 columns.
    Anyway, if there is no simple program that already does this, I can make a program to do what I just described. I just asked the question here because I figure that there are a lot of people knowledgeable about SQL and Java on this forum and that someone would know of a tool which already does what I want if one exists.

  • ORACLE EXPRESS: build a page with multiple forms linked to one table

    hi,
    im using oravle application express. APEX
    i would like to build a page with multiple forms linked to one table (orders) , the page has 4 from  each one with different order_id number (depending on filtering),  and if the order is prepared click yes for each order and this 'YES' should be UPDATED AND SAVED to each order number in the same table with the press of one button.
    i created all the form as (sql query)
    and create one update process
    (UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_1
    WHERE ORDER_ID =:P10_ORDER_ID_1;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_2
    WHERE ORDER_ID =:P10_ORDER_ID_2;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_3
    WHERE ORDER_ID =:P10_ORDER_ID_3;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_4
    WHERE ORDER_ID =:P10_ORDER_ID_4;
    i dont know really if i can do that, but it appear hat it actually saving according to order_id number , but not all the time some time it saved the value as "null".
    please guide me what is the correct way to do this.
    I READ THIS ONE
    http://stackoverflow.com/questions/7877396/apex-creating-a-page-with-multiple-forms-linked-to-multiple-related-tables
    BUT IT WAS FOR MULTIPLE INSERT
    thanks.

    Sans,
    I am no Apex expert, but with a situation as "complex" as yours, have you thought about creating a VIEW that joins these 7/8 tables, placing an INSTEAD OF trigger on that view to do all the business logic in the database, and base your application on the view?
    This is the "thick-database" approach that has been gaining momentum of late. The idea is to put your business logic in the database wherever possible, and let the application (Form, Apex, J2EE, whatever) concentrate on UI issues,

  • How to insert a UUID into multiple tables in the same form

    I am trying to insert a UUID into 2 different tables at the
    same time ie to let this be created in the form and then insert
    this ID into 2 linked tables in a database using Access.
    Does anybody have any suggestions on how to accomplish this?
    Thanks very much

    So you have one form that processes information for two
    tables, or do you
    have two forms (one for each table - except the UUID)?
    If it is one form just run two SQL insert statements. One for
    the primary
    table, then one for the related table.
    If it is two forms run the above two SQL statements then an
    update statement
    to finish filling the second table.
    Or am I completely misunderstanding the issue?
    Bryan Ashcraft (remove brain to reply)
    Web Application Developer
    Wright Medical Technology, Inc.
    Macromedia Certified Dreamweaver Developer
    Adobe Community Expert (DW) ::
    http://www.adobe.com/communities/experts/
    "weelco" <[email protected]> wrote in
    message
    news:esjtjj$qtc$[email protected]..
    > Thanks for your quick reply, and yes I do know how to do
    that however I
    > would
    > like to do this all in one form field so I would like to
    create the UUID
    > whith
    > the same form that also submits it to another table, is
    this possible or
    > do I
    > have to do that using multiple 'pages'?
    >

  • Multiple Queries on one table....

    Hi  - I am trying to query the same table multiple times and can't figure out how any help would be GREATLY appreciated!!  For example - I have a PRINRPT.CALL_DATE Field and in my SQL Command Statement I have asked it to only bring over PRINRPT.CALL_DATE  > 10/31/08...I then count those on my report BUT I would also like to query that same table again with PRINRPT.CALL_DATE = Today - 90 Days and then again PRINRPT.CALL_DATE from 10/31/07 to 10/31/08....I can not figure out how to do this in CR.  I tried a formula based on the PRINRPT.CALL_DATE  field - but it only returns TRUE or FALSE..I would like actual dates so I can count them in the report to get a total by principal by customer (see below).
    Here is my SQL Query - let me know if it is possible please!!!  Thanks in advance for all of your help!!
    Misty
    SELECT ACCT_CLASS.NAME
          , ACCT_CLASS.PRIN_NAME
          , PRINRPRT.PRIN_NAME, PRINRPRT.CALL_DATE, PRINRPRT.AUTHOR
          , CUSTOMER.SALES_Name
          , CUSTOMER.SALES_NO
          , CUSTOMER.NAME
          , CUSTOMER.Customer_Class
          , ACCT_CLASS.CLASSIFICATION
          , PROJECTS.PRIN_NAME
          , PROJECTS.EST_PROF
          , SALES.PRIN_NAME
          , SALES.NOV_2008_GP, SALES.DEC_2008_GP, SALES.JAN_2009_GP,
            SALES.FEB_2009_GP, SALES.MAR_2009_GP, SALES.APR_2009_GP,
            SALES.MAY_2009_GP, SALES.JUN_2009_GP, SALES.JUL_2009_GP,
            SALES.AUG_2009_GP, SALES.SEP_2009_GP, SALES.OCT_2009_GP,
            SALES.NOV_2007_GP, SALES.DEC_2007_GP, SALES.JAN_2008_GP,
            SALES.FEB_2008_GP,    SALES.MAR_2008_GP, SALES.APR_2008_GP,
            SALES.MAY_2008_GP, SALES.JUN_2008_GP, SALES.JUL_2008_GP,
            SALES.AUG_2008_GP, SALES.SEP_2008_GP, SALES.OCT_2008_GP
    FROM AveWorking.dbo.ACCT_CLASS
          JOIN AveWorking.dbo.CUSTOMER ON ACCT_CLASS.CUSTOMER_ID = CUSTOMER.CUSTOMER_ID      
    LEFT JOIN AveWorking.dbo.PRINRPRT ON  ACCT_CLASS.PRIN_NAME = PRINRPRT.PRIN_NAME
            AND ACCT_CLASS.CUSTOMER_ID = PRINRPRT.CUSTOMER_ID
            AND ACCT_CLASS.NAME = PRINRPRT.NAME
            AND PRINRPRT.CALL_DATE > 10/31/2008           
    LEFT  JOIN AveWorking.dbo.PROJECTS ON  CUSTOMER.CUSTOMER_ID =  PROJECTS.CUSTOMER_ID
            AND PROJECTS.NAME = PRINRPRT.NAME
            AND PROJECTS.PRIN_NAME = PRINRPRT.PRIN_NAME
    LEFT JOIN AveWorking.dbo.SALES ON   PRINRPRT.PRIN_NAME = SALES.PRIN_NAME
           AND SALES.CUSTOMER_ID  = PRINRPRT.CUSTOMER_ID
    ORDER BY CUSTOMER.SALES_Name, ACCT_CLASS.PRIN_NAME,PRINRPRT.PRIN_NAME,PROJECTS.PRIN_NAME

    Thanks so much Carl - that was it...I think I have been staring at this for far too many hours now and can't see what is right in front of me!!
    I am still having more issues with it - I hate this report!!!!  I am getting duplicate dates & sales populating now.  So for example I want:
    Principal Name             Name          sales 09       Sales 08   Dates 3Mo        Dates 09         Date 08
    So, I am getting Sales 09 & Sales 08 and Dates in 09 coming up multiple times per customer where there really is only one showing in the database for each day.  I think it has something to do with the sales connection (the last Left Join on my report).  I have ran it soooo many times with groups, without groups, inside out and upside down etc....but if I need an accurate count of the calls made in each column I can't have it duplicating dates...can you tell from my query as to why it might do this??? 
    My ultimate goal is to have one line of data per data field above, then repeat for a new customer.
    Any more ideas????
    Principal Name             Name          sales 09       Sales 08   Dates 3Mo        Dates 09         Date 08
    XXXX                          XXXXX         Total $          Total $         #                        #                    #
    Thanks again so much, any help you can give is greatly appreciated!!
    Misty
    Current Query:
    select  ACCT_CLASS.NAME
          , ACCT_CLASS.PRIN_NAME
          , PRINRPRT.PRIN_NAME, PRINRPRT.AUTHOR
          , CUSTOMER.SALES_Name
          , CUSTOMER.SALES_NO
          , CUSTOMER.NAME
          , CUSTOMER.Customer_Class
          , ACCT_CLASS.CLASSIFICATION
          , PROJECTS.PRIN_NAME
          , PROJECTS.EST_PROF
          , SALES.PRIN_NAME
          , SALES.NOV_2008_GP, SALES.DEC_2008_GP, SALES.JAN_2009_GP,
             SALES.FEB_2009_GP, SALES.MAR_2009_GP, SALES.APR_2009_GP,
            SALES.MAY_2009_GP, SALES.JUN_2009_GP, SALES.JUL_2009_GP,
            SALES.AUG_2009_GP, SALES.SEP_2009_GP, SALES.OCT_2009_GP,
            SALES.NOV_2007_GP, SALES.DEC_2007_GP, SALES.JAN_2008_GP,
            SALES.FEB_2008_GP, SALES.MAR_2008_GP, SALES.APR_2008_GP,
            SALES.MAY_2008_GP, SALES.JUN_2008_GP, SALES.JUL_2008_GP,
            SALES.AUG_2008_GP, SALES.SEP_2008_GP, SALES.OCT_2008_GP,
            PRINRPRT.CALL_DATE,
      case when PRINRPRT.CALL_DATE BETWEEN '11/01/2008' AND '10/31/2009' then PRINRPRT.CALL_DATE ELSE NULL end as "Call_Dates09",
      case when PRINRPRT.CALL_DATE > getdate() - 90 then PRINRPRT.CALL_DATE ELSE NULL end as "3MOCall_Dates09",
      case when PRINRPRT.CALL_DATE  BETWEEN '11/01/2007' AND '10/31/2008' THEN PRINRPRT.CALL_DATE ELSE NULL END   "CALL_DATES08"
    FROM AveWorking.dbo.ACCT_CLASS
          JOIN AveWorking.dbo.CUSTOMER ON ACCT_CLASS.CUSTOMER_ID = CUSTOMER.CUSTOMER_ID      
    LEFT JOIN AveWorking.dbo.PRINRPRT ON  ACCT_CLASS.PRIN_NAME = PRINRPRT.PRIN_NAME
            AND ACCT_CLASS.CUSTOMER_ID = PRINRPRT.CUSTOMER_ID
            AND ACCT_CLASS.NAME = PRINRPRT.NAME                 
    LEFT  JOIN AveWorking.dbo.PROJECTS ON  CUSTOMER.CUSTOMER_ID =  PROJECTS.CUSTOMER_ID
            AND PROJECTS.NAME = PRINRPRT.NAME
            AND PROJECTS.PRIN_NAME = PRINRPRT.PRIN_NAME
    LEFT JOIN AveWorking.dbo.SALES ON  CUSTOMER.CUSTOMER_ID = SALES.CUSTOMER_ID
            AND ACCT_CLASS.PRIN_NAME = SALES.PRIN_NAME
            AND ACCT_CLASS.NAME = SALES.NAME       
    ORDER BY CUSTOMER.SALES_Name, ACCT_CLASS.PRIN_NAME,PRINRPRT.PRIN_NAME,PROJECTS.PRIN_NAME
    Edited by: Misty Whitney on Jul 28, 2009 3:07 PM

  • Multiple messages enqueuing into one table using Database Adapter

    Hi All,
    I am trying to fetch records from one table and insert into another table in the same database using two DB adapters each for one function.When trying for one record,it is working fine.But for more than one records using for-each loop I am unable to insert the records into the table.Can anyone suggest any solution.
    For DB Adapter 1 and 2 I am selecting "Perform an operation on a Table".
    Options being selected in case of both adapters:-
    DB Adapter1-'select' and DB Adapter2- 'Insert'
    Regards,
    Niva Das

    Do not know the exact implementation how you have done but this is what you can do to narrow down the issue.
    you can check out the instance to know whether you are able to fetch multiple records from the first table.
    If that works fine then you can check the transformation whether  the data is getting transformed in to correct format.
    If that too works fine check out whether the invocation to second db adapter is fine or not.

  • Source for Same GL Account(SKA1) used in multiple Chart Of Accounts(T004)

    If Same GL Account is used in multiple Chart Of Accounts. Does SAP Source it from a single GL Account source or it creates a completely new records for the GL Accounts in all the Chart Of Accounts independently. Lets take for an example Accounts Receivable GL Account if this is used for many Chart Of Accounts does the GL Account for Accounts Receivable has the master record and all the Chart Of Accounts use the same GL Account master record for that Accounts Receivable Account.

    1) So Inorder to find one GLAccount I need to know the Chart Of Accounts of that GL account I am looking for as same GL Account number with same name can exist in different Chart Of Accounts.
    2) You referrred GL Code. Is that synonym for GL Account Number.
       I am little stuck with the name
       what is the difference between General Ledger(Is that nothing but a Chart Of Accounts) and General Ledger Account.
       GL Account in SKA1 as it seems like  "GL Account for Chart Of Accounts" instead of "GL Account" as every GL Account   has to be accompanied by Chart Of Accounts.
    Example: If I say "Accounts Receivable "  as GL Account I dont know whether that is in Chart Of Accounts1 or Chart Of Accounts2

  • Drop the Rules of one table from existing bi directional replication setup

    Hi All,
    I have one small question on bi directional replication setup, Its regarding table add in existing replication setup.
    What happened ,When we add a new table to existing replication setup if any reason table is not replicating between two database even we are not getting
    any error in dba_apply_error ,then we have to remove the rules for that particular table and setup again. Some time what happened we got error "queue has
    errors" i dont know the ORA number. But in that case what happened Apply process ABORETED and when we try to start the process it gives same error
    ("Queue has errors" ) and ABORTED again.
    then on metalink for doc id 203225.1 .we have remove the whole replication Manually and setup again. It's horriable....
    Could you please help that before drop the rules for particular table from exisitng bi directional replication setup then wht should we do ?
    Do we need to unscheduled the propagation process and then drop the rules becuase i read on metalink that reason behind the error ,queue has errors
    "negative rules drops while propagation process using the same rule set" .
    Please Suggest!!!!!!!!!!
    Many Thanks

    How huge those tables?. If those are small tables use Oracle MINUS function to get the defference records.

  • Display Data from multiple models in one table

    Hi Experts,
    Is it possible to display data from multiple models in one table smltnsly.
    I have created a table dynamically.Now I would like to display data from multiple models... If this possible,can anyone give me a lead as to how to do it..
    Regards
    SU

    Hi
    Your Model Nodes be
    Model1
    ---Output_Model1
    Attrib1
    Attrib2
    Model2
    ---Output_model2
    Attrib1
    Attrib2
    and the value node is
    ValueNode
    ---Attrib1
    ---Attrib2
    Now the coding.
    int size;
    IPrivate<ViewName>.IOutput_mode1Node  node1 = wdContext.nodeOuptut_Model1();
    IPrivate<ViewName>.IValueNodeElement elem;
    size = node1.size();
    for(int i=0; i<size; i++)
       elem = wdContext.createValueNodeElement();
       elem.setAttrib1( node1.getOutput_Model1ElementAt(i).getAttrib1() );
       elem.setAttrib2( node1.getOutput_Model1ElementAt(i).getAttrib2();
       wdContext.nodeValueNode().addElement( elem );
    similar code for Model Node 2
    Regards
    Abhimanyu L

  • How to get the data from multiple nodes to one table

    Hi All,
    How to get the data from multiple nodes to one table.examples nodes are like  A B C D E relation also maintained
    Regards,
    Indra

    HI Indra,
    From Node A, get the values of the attributes as
    lo_NodeA->GET_STATIC_ATTRIBUTES(  IMPORTING STATIC_ATTRIBUTES = ls_attributesA  ).
    Similarily get all the node values from B, C, D and E.
    Finally append all your ls records to the table.
    Hope you are clear.
    BR,
    RAM.

  • Search a text in a multiple tables and one table has BLOB column

    Hi,
    I couldn't find a solution/examples for below scenario in oracle text documentation or related forums.
    I need to search a text in a multiple tables,in that one table has blob column which is used to store the documnents(pdf,doc,jpg..etc) and other tables have varchar2 columns,These tables have realation each other.
    Please provide a sample examples for above scenario.
    Thanks in advance..

    Have a look at my blog entry here:
    https://blogs.oracle.com/searchtech/entry/indexing_data_from_multiple_tables
    That describes two methods of achieving what you are looking for.

Maybe you are looking for

  • Can't control fans speed after upgrading to kernel26 2.6.31 [solved]

    Mother board is ASUS P5Q-SE. After upgrading pwm sensors disappeared. I can get temp and fans speed but not set. Any ideas? :-\ Last edited by urandom (2009-10-12 15:52:51)

  • Database logon failed when deploy CR on Windows Server 2008

    I use Crystal Reports for Visual Studio 2010 Production Release with MVC 2 web aplication and SQL Server 2008 database server. When I compile/run from VS 2010 it running well, but when deploy it on Windows Server 2008, when load certain report (Not A

  • USB over Cat5/6 Solutions or Wall Dock

    I'm looking for a USB2.0 over Cat5/6 solution to connect to and charge an iPad/iPad2 (Preferably iPad2). I will be using this solution with the following wall mounting kit: http://www.premiermounts.com/product.asp?PartId=2164 http://www.premiermounts

  • Imac to VCR connection

    does anyone successfully connected a VCR to an Imac so as to record the screen image ? I have tried using the mini s-video adapter supplied by apple to connect to my VCR via a switchable s-video to scart adapter but with no success. I want to record

  • Updated clash of clans. Crash when open. Delete

    Updated clash of clans yesterday. Crash when login. Delete and reinstall. But can't see the icon in iPad after installation complete. Can't launch from App Store too.please help