Hi there
I wish to populate the line item "FY TEST" with the future financial year when any "Dec" month is selected in line item
"End Period (Last Actual)" For example, return "FY20" in "FY TEST" when "Dec 19" is selected in "End Period (Last Actual)".
The formula I have tried to write for line item "FY TEST" is below but the syntax is not correct.
IF End Period (Last Actual) = Dec% THEN PARENT('End Period (Last Actual)') + 1 ELSE PARENT('End Period (Last Actual)')
Can someone please assist with providing the correct syntax for this formula?
Many thanks
George
Solved! Go to Solution.
Hi @gcaldis ,
You may use a formula like :
IF MONTH('End Period(Last Actual)') = 12 THEN FY + 1 ELSE FY + 10
I have used FY + 10 else to display a blank, assuming there won't be more than 10 years in application. You can use some other else depending upon your specific requirement.
Thanks,
Yash
Hi @gcaldis ,
You may use a formula like :
IF MONTH('End Period(Last Actual)') = 12 THEN FY + 1 ELSE FY + 10
I have used FY + 10 else to display a blank, assuming there won't be more than 10 years in application. You can use some other else depending upon your specific requirement.
Thanks,
Yash
Thanks Andris, I will keep that in mind.
Thanks Yash
This has solved my requirement.
Regards
George