Actual and Forecasting
Posted: Tue Jul 23, 2013 3:18 pm
Hello,
I am trying to write a RULE where in my Planning version i have a calculation C=A*B but in Actual C is an input. However I want to be able to open up my planning version and see the ACTUAL overwrite the first three months. I have written code to have TM1 block out whatever months are considered ACTUAL in the planning version however what is happening is that the C=A*B calculation is calculating for the months that are ACTUAL in the planning version. I just want the Actuals to overwrite the calculation and only keep the calculation for the forecasted months. Any ideas? Hope this makes sense?
[ {'Original' , 'Intercompany' } , {'Planning', 'Planning Division'},'Value'] = N:
IF ( ATTRN( 'MonthYearFiscal', !MonthYearFiscal, 'End Date Value' ) < ATTRN( 'MonthYearFiscal', DB('Control', 'Current Actual Month' , 'String' ) , 'End Date Value' ) ,
['Actual'],
CONTINUE
) ;
I am trying to write a RULE where in my Planning version i have a calculation C=A*B but in Actual C is an input. However I want to be able to open up my planning version and see the ACTUAL overwrite the first three months. I have written code to have TM1 block out whatever months are considered ACTUAL in the planning version however what is happening is that the C=A*B calculation is calculating for the months that are ACTUAL in the planning version. I just want the Actuals to overwrite the calculation and only keep the calculation for the forecasted months. Any ideas? Hope this makes sense?
[ {'Original' , 'Intercompany' } , {'Planning', 'Planning Division'},'Value'] = N:
IF ( ATTRN( 'MonthYearFiscal', !MonthYearFiscal, 'End Date Value' ) < ATTRN( 'MonthYearFiscal', DB('Control', 'Current Actual Month' , 'String' ) , 'End Date Value' ) ,
['Actual'],
CONTINUE
) ;