Hello:
I am new to TM1 and wanted to know if someone could please help me with a query.
I have built a P/L model for a company with figures from 2013. There is one line, "License Costs" where as a general rule, the figure will end up being 80% of "License Sales" going forward...2015...2016 etc.
Given that this is for future forecasting, not 2013 as I have the actual figures for this entered, where does this rule go?
Thank you in advance for your guidance.
Creating Rules for Forecasting in TM1
-
- Posts: 9
- Joined: Fri Oct 24, 2014 11:08 am
- OLAP Product: TM1
- Version: 10.2
- Excel Version: 15.0.4659.1001
-
- MVP
- Posts: 1831
- Joined: Mon Dec 05, 2011 11:51 am
- OLAP Product: Cognos TM1
- Version: PA2.0 and most of the old ones
- Excel Version: All of em
- Location: Manchester, United Kingdom
- Contact:
Re: Creating Rules for Forecasting in TM1
You just need an if statement that does a lookup to whether the period is "actualised" or not, you can do the lookup a few different ways I tend to just have an attribute on the period dimension if its a single dimension or a lookup cube if its multiple dimensions.
Then your rule can simply be:
Then your rule can simply be:
Code: Select all
['Licence Sales']=N:
If ( AttrN ( 'Period', !Period, 'Actualised' ) = 1,
STET,
<YOUR RULE> );
Declan Rodger
-
- MVP
- Posts: 2836
- Joined: Tue Feb 16, 2010 2:39 pm
- OLAP Product: TM1, Palo
- Version: Beginning of time thru 10.2
- Excel Version: 2003-2007-2010-2013
- Location: Atlanta, GA
- Contact:
Re: Creating Rules for Forecasting in TM1
You're just asking for trouble if you are building a forecasting/planning model and you mix Actuals and Plan/Forecast. They really should be separated into a dimension called "Version", or something like that. You can then have rules that reference "Actual" whenever it is needed for calculating a "Forecast" balance.