Financial Year Dates Calculations

tazeo

Board Regular
Joined
Feb 15, 2007
Messages
132
Office Version
  1. 365
Platform
  1. Windows
Here in Australia the financial year runs Start of July through to End of June.

If I have A1 =TODAY()
How do I get values for cells looking for:
Start of this Fin Year
End of this Fin Year
Start of Last Fin Year
End of Last Fin Year

Referenceing of what the date is Today or at any time in the future.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
For Start This FY, =IF(MONTH(A1)>6,DATE(YEAR(A1),7,1),DATE(YEAR(A1)-1,7,1))

For End This FY, =IF(MONTH(A1)>6,DATE(YEAR(A1)+1,6,30),DATE(YEAR(A1),6,30))

Adjust the Year component up or down for next FY and last FY.

Denis
 
Upvote 0
Thanks Denis
I always forget the DATE function :eek:
 
Upvote 0
Start TY =DATE(YEAR(A1)-(MONTH(A1)<7),7,1)
End TY =DATE(YEAR(A1)+1-(MONTH(A1)<7),7,0)
Start LY =DATE(YEAR(A1)-(MONTH(A1)<7)-1,7,1)
End LY =DATE(YEAR(A1)-(MONTH(A1)<7),7,0)

It's probably advisable to Name the formulas for easier identification.
 
Upvote 0

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

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