• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Calculating the fiscal year

Hi,

I've attached a spreadsheet where you can see I've successfully added a 'Financial Year' column and the 'Financial Quarter' relating to the 'Financial Year' and 'Date Sold' columns.

I've gone a bit brain dead today but would like to know if/how I can show the year in the 'Financial Year' column as 2010/11, 2011/12, 2012/13 etc to make it easier for the person viewing the final output of the data when used in a dashboard.

Hopefully there is someone clever out there who knows how to do this.

Thanks for your help.
PeakSeagull
 

Attachments

  • Fiscal Year.xlsx
    9.9 KB · Views: 12
Perhaps like this and pulled down ?
=YEAR(B4)&"/"&IF(MONTH(B4)<4,4,CEILING(MONTH(B4)/3,1)-1)
 
Perhaps like this and pulled down ?
=YEAR(B4)&"/"&IF(MONTH(B4)<4,4,CEILING(MONTH(B4)/3,1)-1)

Hi - thanks for the formula it's really clever.

Unfortunately, it's adding the quarter after the year instead of extending the year to the full fiscal year period.

For example, I'd like the financial year column to say:

Now
2010
2011

After
2010/11
2011/12
2012/13
2013/14
etc
 
Thank you so much that's brilliant :)
Hi, I've just noticed that using the formula it is doing something strange in March each year as you will see from the attached spreadsheet.
It does the below each year for dates in March - any ideas?

01/03/20122012/12
04/03/20122012/12
05/03/20122012/12
13/03/20122012/12
19/03/20122012/12
23/03/20122012/12
28/03/20122012/12
28/03/20122012/12
29/03/20122012/12
 

Attachments

  • Fiscal Year 2.xlsx
    137.4 KB · Views: 8
Peak Seagull
Wasn't Your original just like below ( reply #3 ) ... for somehow ... year and next years last two numbers ... hmm?
Screenshot 2020-07-14 at 19.00.03.png
... then what matter of month?
 
Hi, I've just noticed that using the formula it is doing something strange in March each year as you will see from the attached spreadsheet.
It does the below each year for dates in March - any ideas?

01/03/20122012/12
04/03/20122012/12
05/03/20122012/12
13/03/20122012/12
19/03/20122012/12
23/03/20122012/12
28/03/20122012/12
28/03/20122012/12
29/03/20122012/12
As per above Post #08 mentioned the formula in C5 is revised >>

From this :

=YEAR(B5)-(MONTH(B5)<3)&"/"&RIGHT(YEAR(B5)+(MONTH(B5)>3),2)

Into this :

=YEAR(B5)-(MONTH(B5)<4)&"/"&RIGHT(YEAR(B5)+(MONTH(B5)>3),2)

And

The revised formula result as per below screenshot :

69962
 
Back
Top