Simulating parent and child together

Hi,

I have a module where I have 2 lists and few line items. Line items are used for simulation(shifting data from particular Time period say Apr to Aug).

This happens for all the list items which are there in Applies to. Requirement is such that, simulation should happen for only few list items as per user selection.

 

Please let us know how to do this.

 

Regards,

Rajasekhar

Tagged:

Answers

  • Hi @Rajasekhar,

     

    I assume that you have a module with 2 dimensions and a few line items.

     

    Can you please elaborate more on your second statement.

     

    Thanks,

    Lokesh

  • You can change the Applies to a Subset and put in your simulation only list items

     

    Thanks

    Arun

  • Hi @Rajasekhar 

     

    Create one more module, Selection_Module, and create two line items LI_1 and LI_2 and format them to LIST_1 and LIST_2

     

    In main model, create a boolean line item, Simulation? , and write this.

     

    Selection_Module.LI_1=item(LIST_1) or Selection_Module.LI_2=item(LIST_2)

     

    this will be true for list items which are selected from Selection_Module.

     

    Using POST function, shift the data from one period to another period. 

     

    if  Simulation? then POST(X,N) else 0

     

    link for POST function, https://help.anaplan.com/anapedia/Content/Calculation_Functions/All/POST.html

     

    OR you can write logic which you have already written in THEN part of if condition.

     

    Hope this helps you.

     

    Thanks,

    Harsha