Hi everyone,
my feeder problem is I need to feed some (Actual / YTD) on (Budget / month)
my time dimension is builded that way:
(Conso) YTD M
| - Month M (Leaf)
| - YTD m-1 (Conso)
A feeder like that will works:
[Actual, YTD M4] => [Budget, M4]
I'm looking for something more dynamic:
[Actual]=> DB( SameCube, Budget, ELCOMP('Time', !Time, 1) ... );
But it don't works like that.
Any Idea is welcome.
feeder consolidate to leaf
-
- Posts: 74
- Joined: Thu Jun 17, 2010 10:35 am
- OLAP Product: TM1
- Version: 9.4 9.5.1
- Excel Version: 2003 - 2007
Re: feeder consolidate to leaf
Finally, I found the answer:
[Actual, YTD M12]=>[Budget, YTD M12];
As al months ans consolidated months are childrens of 'YTD M12' it works.
But I dont understand why a simply "Actual => Budget" won't work.
regards
[Actual, YTD M12]=>[Budget, YTD M12];
As al months ans consolidated months are childrens of 'YTD M12' it works.
But I dont understand why a simply "Actual => Budget" won't work.
regards
-
- Community Contributor
- Posts: 147
- Joined: Mon Nov 29, 2010 6:30 pm
- OLAP Product: Cognos TM1
- Version: 10.1
- Excel Version: Office 2010
Re: feeder consolidate to leaf
Hi rozef,
A bit confused, do you want Budget Month to equal Actual YTD?
If your Month dimension is setup like 'Jan', 'Jan YTD' etc, you could put a text attribute on Month called 'Prior Month', such that 'Mar' has the attribute 'Feb'.
Then use a rule;
['Budget'] = N:
DB( 'Actuals', ATTRS( 'Month', !Month, 'Prior Month') | ' YTD', etc.
A bit confused, do you want Budget Month to equal Actual YTD?
If your Month dimension is setup like 'Jan', 'Jan YTD' etc, you could put a text attribute on Month called 'Prior Month', such that 'Mar' has the attribute 'Feb'.
Then use a rule;
['Budget'] = N:
DB( 'Actuals', ATTRS( 'Month', !Month, 'Prior Month') | ' YTD', etc.