Jump to content
  • 0

Fiscal year in Formula field


NeoInJS

Question

Hello - I have and Start_Date field with Data type Date/Time. I added another field that is call Renewal_date with Formula field data type. May I please ask for the formula to use in my Renewal_date field.

For example:  Start_Date - 07/15/2017

Expected Renewal Date should be = 07/15/2018

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
1 hour ago, NeoInJS said:

Hello - I have and Start_Date field with Data type Date/Time. I added another field that is call Renewal_date with Formula field data type. May I please ask for the formula to use in my Renewal_date field.

For example:  Start_Date - 07/15/2017

Expected Renewal Date should be = 07/15/2018

Hi NeoInJS,

You can try DATEADD(year, 1, [@field: Start_Date]).

Thanks.

Link to comment
Share on other sites

  • 0

Thank you. Just also found a workaround

 

***To get the Quarter:***

 

CASE

 

WHEN Month([@field:Renewal_Date]) <=3 THEN 'Q4'

WHEN Month([@field:Renewal_Date]) <=6 THEN 'Q1'

WHEN Month([@field:Renewal_Date]) <=9 THEN 'Q2'

WHEN Month([@field:Renewal_Date]) <=12 THEN 'Q3'

 

ELSE 'NA'

 

END

 

***To get the FY:***

 CASE WHEN (Month([@field:FYEntry]) >= 4 AND Month([@field:FYEntry]) <= 12) THEN Right ((Year([@field:FYEntry])+1),2) ELSE Right (Year([@field:FYEntry]),2) END

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...