Need formula to indicate fiscal year impact based on dates

I need a column that will determine what Fiscal Year the request applies to based on the date value in one of 2 fields: Created Date OR Date Submitted to Billing.

It is possible that the Created Date could be in the previous Fiscal Year, but the Date Submitted to Billing is in the following Fiscal Year - the column should then display the later of the 2. Help!

Ex:

Created Date of 2/25/23 - FY24

Date Submitted to Billing 6/10/24 - FY25

Would want the result of the formula to be FY25.

If Date Submitted to Billing > 4/1/23 OR Created date > 4/1/23, display “FY24”

If Date Submitted to Billing > 4/1/24 OR Created date > 4/1/24, display “FY25”

If Date Submitted to Billing > 4/1/25 OR Created date > 4/1/25, display “FY26”

Best Answer

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Answer ✓

    Try this:

    ="FY" + RIGHT(MAX(IFERROR(YEAR([Date Submitted To Billing]@row) + IF(MONTH([Date Submitted To Billing]@row) >= 4, 1, 0), 0), YEAR([Created Date]@row) + IF(MONTH([Created Date]@row) >= 4, 1, 0)), 2)

    Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!

    CERTIFIED SMARTSHEET PLATINUM PARTNER

    10xViz.com

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!