I have 2 cubes : 'SCOA Capture V3' and 'SCOA V3 Elimination No'
Dimensions of 'SCOA Capture V3', are REBusinessUnit, SCOA V3 Account Hierarchy, SCOA Segments Capture V3
Dimensions of 'SCOA V3 Elimination No', are REBusinessUnit, SCOA Segments Capture V3, SCOA V3 Elimination No, SCOA V3 Elimination Measure
'SCOA V3 Elimination Measure' has a an element called 'Target Key', which is a picklist that maps to 'SCOA V3 Account Hierarchy'
' SCOA V3 Elimination No' is a 2 level hierarchy, level 1 has 'Total', level2 has a number range from 1 to 2
My Rule below :
Code: Select all
[] = N: IF(!SCOA V3 Account Hierarchy @= DB('SCOA Eliminations V3',!REBusinessUnit,!SCOA Segments Capture V3,'1','Target Key'), DB('SCOA Eliminations V3',!REBusinessUnit,!SCOA Segments Capture V3,'Total','Target Value'),continue);
[] = N: IF(!SCOA V3 Account Hierarchy @= DB('SCOA Eliminations V3',!REBusinessUnit,!SCOA Segments Capture V3,'2','Target Key'), DB('SCOA Eliminations V3',!REBusinessUnit,!SCOA Segments Capture V3,'Total','Target Value'),continue);
But when different accounts are chosen for 2 different elimination no's, rules doesnt work. (Gives the consolidated total for each account).
I need it to give me the consolidated item per picklist values.
Please Help ...