Easy Financial Year Formula

To get the Australian financial year from a date you usually use an IF function based on the month number.

I recently learned a new hack from Matt Allington of Exceleratorbi.

(Have since found out Matt learned the technique from David Marriott)

You can add 184 to the date and then use the YEAR function. See table and formulas below.

The formula in cell B2 is

=YEAR(A2)

The formula in cell C2 is

=YEAR(A2+184)

Both formulas have been copied down.

A simple solution to a frustrating issue. Thanks Matt.

Please note: I reserve the right to delete comments that are offensive or off-topic.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

4 thoughts on “Easy Financial Year Formula

  1. I USE
    =IF(MONTH(TODAY())<=6,MONTH(TODAY())+6,MONTH(TODAY())-6)

    for example , this will return 10 for April etc
    can be edited to show a month name also

  2. Actually it was me who told Matt about that formula.

    If you read his blog post you’ll see he credits me as telling him about it.