Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Anyone that can tell me how I can create a dimension from the following expression in my data load script?
It works fine as a master dimension, however I want it as a normal dimension.
=
IF(
AGGR(
IF(Count(DISTINCT {<Baseline=,[Adherence Filter]={'In Scope'},[OPR 2018] = {'4A'}, Name *= e({<Baseline=,[Adherence Filter]={'In Scope'},[Movement Type] = {'Promotion Band Up'}>})>} "Global ID")='1','Not Implemented'),"Global ID")
='Not Implemented','4A Not Implemented',
IF(
AGGR(
IF(Count(DISTINCT {<Baseline=,[Adherence Filter]={'In Scope'},[OPR 2018] = {'4A'}, Name *= p({<Baseline=,[Adherence Filter]={'In Scope'},[Movement Type] = {'Promotion Band Up'}>})>} "Global ID")='1','Implemented'),"Global ID")
='Implemented', '4A Implemented',
IF(
AGGR(
if(Count(DISTINCT {<Baseline=,"Adherence Filter"={'In Scope'},[OPR 2018] = {'1B'}, Name *= p({<Baseline=,"Adherence Filter"={'In Scope'},[Movement Type] = {'Termination Voluntary', 'Termination Involuntary'}>})>} "Global ID")='1','Implemented'),"Global ID")
='Implemented', '1B Implemented',
IF(
AGGR(
IF(Count(DISTINCT {<Baseline=,"Adherence Filter"={'In Scope'},[OPR 2018] = {'1B'}, Name *= e({<Baseline=,"Adherence Filter"={'In Scope'},[Movement Type] = {'Termination Voluntary', 'Termination Involuntary'}>})>} "Global ID")='1','Not Implemented'),"Global ID")
='Not Implemented','1B Not Implemented'))))Thanks.