How to Add a series in Demantra Worksheet which calculates qtr to qtr value

Hi All,
I am not sure if this is the right thread that i am posting this message.
My worksheet has Four Rows(one for each quarter) of data for each item. I need to define a series in Worksheet
which subtracts data from a couple of series from the previous quarter. For
Example the series for the 2nd quarter must subtract the revenue and non
revenue shipments from the first quarter and put the value in the series in the
2nd quarter. How can I do it?
Thanks in advance

Hi user630001,
Welcome to this wonderful forum to discuss anything related to Demantra.
I am assuming that you have values for "series_1" and "series_2" in qtr 1, qtr2, qtr3 and qtr4 that you need to use in a new series called "result_series" and that the result in the new series is given by:
(result_series) for qtr4 = series_1 for qtr3 - series_2 for qtr3. Here qtr1 is the earliest quarter and qtr4 is the latest.
To fulfill the above requirement,create 2 new series called "timeshifted_series_1" and "timeshifted_series_2" and copy the previous quarter's values into the present quarter (means copy qtr 3 values of series_1 and series_2 into timeshifted_series_1 and timeshifted_series_2 for qtr4)and use these two new series while calculating the "result_series" (means result_series = timeshifted_series_1 - timeshifted_series_2 ).
In short create timeshifted series to have values from the previous quarter and utilise the timeshifted series for the calculation in the resultant series.
For copying the series_1 and series_2 into the timeshifted_series_1 and timeshifted_series_2 series you can use the rolling data functionality available in Demantra.
Hope this helps.
Thanks and Regards,
Shekhar

Similar Messages

  • How to add hp printer in windows xp which is in a wireless network?

    how to add hp printer in windows xp which is in a wireless network?

    What printer?
    In general, you can download and install the latest software for your printer from the "Support & Drivers" link at the top of this page.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • How to add two series data in singal xy graphs in excel through labview

    Hi,
    I am trying to generate excel report and needs to plot XY graph in excel sheet. Using excel insert graph VI I am able to pass the data to excel and generate the XY graph (one x axis and many y axis), but I am not able to add a series in the graph that means not able to plot two XY plot in same graph (for example two plot X1Y1 and X2Y2 on same Graph). I know the other options like passing the image of graph control to excel sheet and by passing the data to specified cells and generating the xy plot.But my requirement is plotting xy plots in singal xy graph without displaying the data in tabular form in excel sheet. (Like when we call the insert graph VI, it will only inserts the OLE object and data is hidden in that)  Please let me know if you need more clarification and let me know how to do this..
    Regards
    Santosh

    I have got answer from another post. Thanks.

  • How to add line series dynamically to a line chart in flex?

    hi..i need to add line series dynamically to a line chart..depending on an array..the application is this..i have an array which stores the details of the users connected to an fmi server..the chart should display the bandwidth of each client..so the users should be added and removed from the chart dynamically...

    Hi
    1.I am giving you solution for dynamically adding values to the dropdown
    public void addValue( )  //Method Name in Component controller
        //@@begin addValue()
              IWDNodeInfo nodeinfo = wdContext.nodeNodeTestData().getNodeInfo();// Node should be map to the view's Node
              IWDAttributeInfo att = nodeinfo.getAttribute("VechileTypes");// Attribute by which dropdown in bound//
              IModifiableSimpleValueSet svSet = att.getModifiableSimpleType().getSVServices().getModifiableSimpleValueSet();
              svSet.put(wdContext.currentNodeTestDataElement().getInpAtt(),wdContext.currentNodeTestDataElement().getInpAtt());
        //@@end
    2.   wdThis.wdGetLangCompController().addValue(); // call this method in the point where u want to add values to the dropdown.

  • How to add 1 more column in standard portal UWL and map the values.

    Hi
    I have one issue/requirement, please help me out on that also.
    In portal UWL, i want to add one more column TICKET ID COLUMN, and ticket id value I  will be putting as work item ID of abap Workflow, so whenever  approver opens his portal UWL, in first column i want to show ticket ID say 00012345, so how to add this ticket ID column in standard portal UWL and how to put/map  value of work item in that column.
    My idea behind this is, when ever say employee wants to know the status about his ticket ID, he can simply ask his manager regarding the ticket status by referring to that ticket ID which manager can easily find in his portal UWL in that extra TICKET ID COLUMN .
    Do I have to change anything in SAP inbox also ? Do i have to add 1 more colum in sap R/3 inbox also ? and will adding 1 more colum in sap inbox (R/3 inbox), will create automatically one more ticket ID colum in portal UWL also ?
    please let me know , as i do not want to add 1 extra column in R/3 inbox, just i want in portal UWL extra ticket ID column should come and i want to put workitem ID generated at the start of workflow, in that colum in portal UWL
    please help me on this.
    Thanks...
    Edited by: User Satyam on May 29, 2011 6:16 AM

    Hi Satyam,
    These are called custom attributes.  Here is a powerpoint that may be able to assist you with the documentation that the other poster gave you too.
    Always remember too when you make a change on the backend R/3 side, you must reregister your UWL connector.  And yes, the column must be available on the backend R/3 side.  We can't create on the fly columns in the UWL, that have no reference to the backend system in this case.
    Beth Maben
    EP - Senior Support Consultant II
    AGS Primary Support
    Global Support Centre Ireland
    Please see the UWL Wiki @
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

  • How to add a SwingComponent to a Scene which can resize dynamically ?

    Hello,
    I would like to add a custom swing component to a Scene (am using SwingComponent.wrap(..) approach) however I would like to know how to enable dynamic resizing of my component when my JavaFX scene is resized by the user ?
    any info appreciated,
    -A

    I am going to have to award myself the Duke points. Surprising no one replied to this..
    Anyway for anyone looking at this in future here is how I solved this problem:
    Used the excellent Grid layout from JFXtras project allowing the following:
    import org.jfxtras.scene.layout.Grid;
    import org.jfxtras.scene.layout.GridConstraints;
    import org.jfxtras.scene.layout.Row;Then my Stage was set like this (obviously this applies to any component) - I was just looking for Swing:
    Stage {
        title: "JavaFX Dynamic Resize Layout"
        resizable: true
        var theScene: Scene;
        scene:
        theScene = Scene {
            content: [
                Grid {
                    width: bind theScene.width
                    height: bind theScene.height
                    rows: [
                        Row {
                            cells: [
                                Cell {
                                    hgrow: GridConstraints.ALWAYS
                                    vgrow: GridConstraints.ALWAYS
                                    halign: GridConstraints.HFILL
                                    valign: GridConstraints.VFILL
                                    content:swingComponent
    }Simple really....
    Edited by: AlanOL on Feb 23, 2009 12:49 AM

  • Hi, everyone, how to add subject of the email by which my smartform is sent

    I use the three interface parameters in smartform including mail_recepient_obj, mail_sender_obj, and mail_app_obj, and I use three function modules to import the three objects, does anyone know that which I should give value to to make the subject I want? thank you!

    Hi,
    Check this link. I am explaining the procedure of sending smartform output by mail.
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e

  • Advice please on how to add a shopping cart in iweb

    Hi
    I am going to re-vamp my iweb created website and was wondering if anyone could advise me on how to add a shopping cart please, and which one would you suggest...? Paypal...?
    I use GoDaddy to host my site and publish through MobileMe.
    Also, bit of a two part question.... Can I use simpleviewer on my iweb created site... is it compatible...?
    I would like to go with iweb but may consider other options if this is not possible..
    Thanks for any help
    Gerry....

    Sorted...

  • In itunes how to add selected groups

    in itunes how to add selected groups

    BalusC wrote:
    You're placing an array of all values into single SelectItem instead of creating a new SelectItem for each value of the array.With other words: you should not place all values in one SelectItem. You should create a new SelectItem for each value of the array.

  • How to add rows in tableview using javascipt

    Hi
    I had tableview and button in my page.If i click on the button one new row should be appended to the existing tableview.
    so , how to add rows in tableview using javascipt which are editable?
    Regards,
    Pydi.

    Hi,
      Javascript is client scripting language, which is mainly used for validations at the client side.
      To add new row using a HTMLB tag ucannot use javascript. Instead pass "visibleRowCount" variable to a abap variable and add the variable on every button click.. that wil increase the visible row count.
    Also the size of the table view is the size of the itnernal table, so append a blank like to the internal table or insert it at the top.
    If you are not using HTMLB tags and using simple HTML tags u can always add a row using java script.
    Regards
    Imran.

  • How to add surcharges to base price

    Dear All ,
    We are Implementing SAP for a service industry.
    Here in pricing there are so many surcharges are in use.
    We are maintaining the condition record for gross price.
    I want the surcharge like fuel charges , for ex , to be added to the gross price to become the base price simultaneously there should be a different GL account for it. I have assigned a separate GL account for this condition type through accruals in OBYC. But can anybody tell me how to add this to base price on which service tax will be calculated .
    Regards
    R B Panda

    Hi R B Panda
    Lets say
    Basic Price - 100
    Surcharge     - 10
    Service Tax is on 110
    You have a condition type for Basic Price which has acc key attached to it in pricing schema.
    Now create one more condition type using m/06 say ZSUR
    Create acc key
    Now add this ZSUR condition type to your pricing schema using m/08 , here attach the acc key to ZSUR.
    System will calculate the taxes on 110 i.e. basic + surcharge.
    Tax rate will come from tax code.
    Regards
    RAJESH DANGLE
    do reward if useful....

  • How to add custom field to the task via CSOM?

    Hello!
    I'm trying to add custom fields to my programmatically created task in project 2013. Tasks are created. Then I get them and load custom fields by:
    DraftProject projCheckedOut = tstProj.CheckOut();
    projContext.Load(projCheckedOut.Tasks);
    projContext.ExecuteQuery();
    foreach (var task in projCheckedOut.Tasks)
    projContext.Load(task.CustomFields);
    projContext.ExecuteQuery();
    But the each CusomFieldCollection object has only 1 field (Health, because it have a default value and created automatically). But when I load my project in Project professional i saw more than 1 field, but they are empty.
    Then I tried to add a new custom field to each CusomFieldCollection of each task.
    var newField = new CustomFieldCreationInformation();
    newField.FieldType = CustomFieldType.TEXT;
    newField.Name = "F_1";
    newField.Description = "test description";
    task.CustomFields.Add(newField);
    task.CustomFields.Update();
    New field added to the collection, but when I update the project and publish it nothing is happened.
    How to add a custom field to the each task and set it value?
    Or how to attach enterprise task custom field to my tasks.
    I'm using Microsoft.ProjectServer.Client.

    Hi
    Hope the below posts are of some  helpful for you 
    http://social.msdn.microsoft.com/Forums/en-US/d79f22f2-7fd2-46af-b778-e189c8611120/use-csom-to-update-projects-custom-fields?forum=project2010custprog
    http://msdn.microsoft.com/en-us/library/microsoft.projectserver.client.project.setcustomfieldvalue.aspx
    Thanks
    Geeth
    Geeth If you feel that the answer which i gave you is Helpful please select it as Answer/helpful.

  • How to add border to a photograph

    how to add border to a photograph

    Depends on which app or software you are using to view the photo.  Read the "Help" instructions of the app and/or software.

  • How to add docentry with some num.?can you solve below query   Declare @a as Numeric SET @a=14900000; SELECT (@a+($[@MAINTDCHEAD.DocEntry])as 'series no'

    how to add docentry with some num.?
    can you solve below query
    Declare @a as Numeric
    SET @a=14900000;
    SELECT (@a+($[@MAINTDCHEAD.DocEntry])as 'series no'

    Hi,
    Yes possible.
    Try this:
    Declare @a as INT
    SET @a=14900000;
    SELECT (@a+($[ORDR.DocEntry]))
    Thanks & Regards,
    Nagarajan

  • How to add series to Business Graphics control dynamically?

    Hi Experts,
    How to add series to Business Graphics control dynamically?
    I tried the method add_series( ) but could not use it properly.
    If you have any clues of using it, let me know.
    I need it urgently.
    Best Regards,
    Arti.

    I'm not sure what ADD_SERIES method you are refering to. The only programable API for the Business Graphics that I found was this one:
    http://help.sap.com/saphelp_nw70/helpdata/EN/42/e61cd068dc3ee4e10000000a1553f7/frameset.htm
    I've not ever tried it, but you not just add the series UI element like any other dynamic UI manipulation during the WDDOMODIFYVIEW?
    http://help.sap.com/saphelp_nw70/helpdata/EN/11/ba74412cba127de10000000a155106/frameset.htm

Maybe you are looking for