I'm struggling to work out how to feed our Project cube based on this rule:
Code: Select all
['Forecast', 'D001','Project in Construction']=N:
IF ( ELLEV('Project',!Project) = 0 & ELISANC('CCL Project','Sys.Level 2 Projects',!Project) = 0 ,
IF(
NUMBR(!FinYear | ATTRS('Period',!Period,'Month No')) >=
DB('Project Timing',!Version,'Construction',SUBST(!Project,1,5),'Start Month No')&
NUMBR(!FinYear | ATTRS('Period',!Period,'Month No')) <=
DB('Project Timing',!Version,'Construction,SUBST(!Project,1,5),'End Month No'),
1,0),
CONTINUE);
The Project cube (where the rule sits) has these dimensions: Version, FinYear, Period, Project, WorkCenter, ProjectMeasure.
The rule works fine and gives the right results, but consolidations aren't showing the totals as they're all reporting that there's no feeding going on. And I have no idea where to start trying to feed this beast!
Any assistance greatly appreciated!