I'll try to make this simple..
Cube - staff
Dimension -
Positions
Dept
CostCentre
Measure
Measure Elements-
FTE (Full Time Equivalent)
HeadCount
Salary etc
I need a rule which will calculate HeadCount to be 1 irregardless of a staff being 0.5 on FTE between 2 departments. That is easy. But on the consolidated level...That staff is being shown as 2 when i need it to be shown as 1.In summary, i need something that counts the number of 0 level occurrence of a particular dimension in a given view. Almost like DIMSIZ not for the whole dimension but for what is in a particular view.
['HeadCount']=N:(if['FTE']>0,1,0);<---But on C: Level there is double counting...
Any ideas ?
Rule for HeadCount
-
- Posts: 36
- Joined: Tue Sep 07, 2010 11:34 am
- OLAP Product: Cognos TM1
- Version: 10-2-2
- Excel Version: 2014
Rule for HeadCount
Last edited by mukeshrajdass on Tue Jun 03, 2014 1:18 am, edited 1 time in total.
-
- Community Contributor
- Posts: 324
- Joined: Mon Jul 02, 2012 9:39 pm
- OLAP Product: TM1
- Version: PAL 2.0.8
- Excel Version: 2016
- Location: Sydney, Australia
Re: Rule for HeadCount
Use ConsolidatedCount function
Regards
Regards
-
- Posts: 36
- Joined: Tue Sep 07, 2010 11:34 am
- OLAP Product: Cognos TM1
- Version: 10-2-2
- Excel Version: 2014
Re: Rule for HeadCount
Was looking at that and ConsolidatedCountUnique ...
Never used it before...documentation is not that clear...will have a go...
Never used it before...documentation is not that clear...will have a go...
-
- Posts: 36
- Joined: Tue Sep 07, 2010 11:34 am
- OLAP Product: Cognos TM1
- Version: 10-2-2
- Excel Version: 2014
Re: Rule for HeadCount
Thanks it worked !!!
['HeadCount']=N:(if['FTE'] >0,1,0));C:ConsolidatedCountUnique(0,'position dimension','',elem1-n,'HeadCount');
Appreciate your pointer....
['HeadCount']=N:(if['FTE'] >0,1,0));C:ConsolidatedCountUnique(0,'position dimension','',elem1-n,'HeadCount');
Appreciate your pointer....

-
- Community Contributor
- Posts: 324
- Joined: Mon Jul 02, 2012 9:39 pm
- OLAP Product: TM1
- Version: PAL 2.0.8
- Excel Version: 2016
- Location: Sydney, Australia
Re: Rule for HeadCount
Good to hear you got it working. You are welcome.