The TM1 Developer course manual in the rules chapter says, "dont feed consolidated elements, just leaf".
so my depreciation_period dimension is formed by this tree:
N:NA Projection
C:All Projected Periods
-1
-2
-3
up to 24
My rule is
----------------
SKIPCHECK;
(something)
['Projected Depreciation']=N:IF(NUMBR(!depreciation_period)<=['Months to Project','NA projection'] & ['Flag','NA Projection'] = 1,
['NA Projection','Monthly Depreciation Value'],
continue);
FEEDERS;
(something)
['Months to Project','NA projection']=>['Projected Depreciation','All Projected Periods'];
['Flag','NA projection']=>['Projected Depreciation','All Projected Periods'];
['Monthly Depreciation Value'','NA projection']=>['Projected Depreciation','All Projected Periods'];
----------------
This feeds my rule, but the course text is explicit with C:, should I do a DB with ELISANC? is better? why it is commented the C: feeding advises are always "temptating", C: is feeding the childs? In some cases is valid? sea of questions..

cheers,