|
发表于 2014-6-29 17:19:46
|
显示全部楼层
jcblough wrote:does this exist, I have the following statement:
['Forecast', '06XW'] =N: IF(('ESP Sales' @= !SSP_m), Continue, 0);
It is zeroing out values for an entire level of a cube sans the measure 'ESP Sales' I want it to leave ESP Sales and another value, is there a proper 'or' structure? "OR", '|', and '||' do not work. The OR operator is represented by "%".
But in your case you could change the rule to:
['Forecast', '06XW', {'ESP Sales', 'another value'}] =N: 0;
Michel |
|