Formula for Austrlian financial Year/Calendar and Quarters

TripB

New Member
Joined
May 7, 2017
Messages
2
Hello,

I'm after a formula that will return the financial year/calendar year and quarter from a date field


Date Calendar Year Calendar Year
01/01/2016 to 30/03/2016 1st Qtr 2016 3rd Qtr 2015/2016
01/04/2016 to 30/06/2016 2nd Qtr 2016 4th Qtr 2015/2016
01/07/2016 to 30/09/2016 3rd Qtr 2016 1st Qtr 2016/2017
01/10/2016 to 31/12/2016 4th Qtr 2016 2nd Qtr 2016/2017

and so on

Date Field will be one column with dates per day:

Date
01/01/2016
02/01/2016
03/01/2016 etc

Any help is appreciated.
Cheers
Haydn
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Try these:

for calendar qtr/year =ROUNDUP(MONTH(A1)/3,0)&CHOOSE(ROUNDUP(MONTH(A1)/3,0),"st","nd","rd","th")&" Qtr "&YEAR(A1)

for financial qtr/year =ROUNDUP(MONTH(EDATE(A1,-6))/3,0)&CHOOSE(ROUNDUP(MONTH(EDATE(A1,-6))/3,0),"st","nd","rd","th")&" Qtr "&YEAR(EDATE(A1,-6))&"/"&YEAR(EDATE(A1,-6))+1
 
Upvote 0
Try these:

for calendar qtr/year =ROUNDUP(MONTH(A1)/3,0)&CHOOSE(ROUNDUP(MONTH(A1)/3,0),"st","nd","rd","th")&" Qtr "&YEAR(A1)

for financial qtr/year =ROUNDUP(MONTH(EDATE(A1,-6))/3,0)&CHOOSE(ROUNDUP(MONTH(EDATE(A1,-6))/3,0),"st","nd","rd","th")&" Qtr "&YEAR(EDATE(A1,-6))&"/"&YEAR(EDATE(A1,-6))+1

Thanks Tetra. Work a treat!

Cheers
Haydn
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,876
Members
452,363
Latest member
merico17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top