Probably a stupid feeder question
Posted: Wed Aug 12, 2009 4:27 am
Hi there,
I have created a rule that feeds and works as I expect:
However when I add an if statement the consolidated values are no longer shown! N level is fine. This seems bizarre to me but im sure its something simple I'm missing.
Thanks in advance
I have created a rule that feeds and works as I expect:
Code: Select all
SKIPCHECK;
['Op Sup Ratio'] = ['Total Operator'] / ['Total Support'];
FEEDERS;
['Total Operator'] =>['Op Sup Ratio'];
['Total Support'] =>['Op Sup Ratio'];
Code: Select all
SKIPCHECK;
['Op Sup Ratio'] = if ( ['Total Support'] = 0 , 0 , ['Total Operator'] / ['Total Support']);
FEEDERS;
['Total Operator'] =>['Op Sup Ratio'];
['Total Support'] =>['Op Sup Ratio'];