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

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
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,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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