Consolidation not working with Skipcheck off
Posted: Wed Oct 20, 2010 8:46 am
Hi,
I have a cube with 3 dimensions, a time dimension that has 5 levels, day, week, month, quarter and year, the Cube control dimension and a flat measures dimension.
The measures dimension contains Day, Week, Month, Quarter and Year elements.
The idea is to populate the Day element with a 1 when data is loaded into that day in the respective cube.
The Week element will then be rule-driven:
so that it equals the last day of the week (i.e. a 1 if the last day of the week is populated)
This works fine, however I get a consolidation issue:
I have no Skipcheck or feeders in this rule, however, the Week element seems to consolidate the n level elements (which are always zero) rather than the calculated level 1 elements (see highlighted cell in attached screenshot).
Any ideas?
Thanks,
Dan
I have a cube with 3 dimensions, a time dimension that has 5 levels, day, week, month, quarter and year, the Cube control dimension and a flat measures dimension.
The measures dimension contains Day, Week, Month, Quarter and Year elements.
The idea is to populate the Day element with a 1 when data is loaded into that day in the respective cube.
The Week element will then be rule-driven:
Code: Select all
['Week'] =
IF(ELLEV('Time Daily', !Time Daily) = 1,
DB('DataLoad Status Daily',!}Cubes, ATTRS('Time Weekly', !Time Daily, 'LastPeriod'),'Day'),
STET);
This works fine, however I get a consolidation issue:
I have no Skipcheck or feeders in this rule, however, the Week element seems to consolidate the n level elements (which are always zero) rather than the calculated level 1 elements (see highlighted cell in attached screenshot).
Any ideas?
Thanks,
Dan