If your model requires a special currency conversion rule to handle the conversion of cumulative Profit & Loss accounts using an average exchange rate for the month, here’s how to set it up.

  • Create a variable set called PLVars containing all the P&L type accounts that need to be converted.
  • Add the following rule to the ActRules set

Name = CurrCalc

Range = [PLVars][input][YTD]

if(currview == @localcurrency, @input, 
if(time == @Jan, localcurrency:ytd / @CurCCR, 
(localcurrency:ytd - localcurrency:ytd:time[:>-1]) / @CurCCR + ytd:time[:>-1])) 

Make sure the rule is placed below any time or product calculations in the rule set.

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Please do not use this for support questions.
Centrixe Support

Post Comment