Rule to Fix a Quarter going forward
Posted: Fri May 03, 2013 4:23 pm
Hi,
I am trying to write a rule that should apply after certain quarter. Say I have 3 years forecasting from 2012 - 2015. But a certain condition, my rule should apply only after 2013-Q3.
My Rule:
['Carryover Units'] = DB('ORAM', !Scenario, !Company, DIMNM('Quarter', DIMIX('Quarter', !Quarter) -1 ), !Product, 'FGI Units', !ORAM_m);
I want to start this rule apply from 2013-Q3.
I tried this for testing but not working:
['Carryover Units'] = IF(
DIMIX('2013-Q4', !Quarter) > DIMIX('Quarter', !Quarter)
, 100
, STET
);
Can you correct my logic?
Thanks
KKMK
I am trying to write a rule that should apply after certain quarter. Say I have 3 years forecasting from 2012 - 2015. But a certain condition, my rule should apply only after 2013-Q3.
My Rule:
['Carryover Units'] = DB('ORAM', !Scenario, !Company, DIMNM('Quarter', DIMIX('Quarter', !Quarter) -1 ), !Product, 'FGI Units', !ORAM_m);
I want to start this rule apply from 2013-Q3.
I tried this for testing but not working:
['Carryover Units'] = IF(
DIMIX('2013-Q4', !Quarter) > DIMIX('Quarter', !Quarter)
, 100
, STET
);
Can you correct my logic?
Thanks
KKMK