Get financial year from date

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,404
Office Version
  1. 2016
Platform
  1. Windows
I'm trying to find a way to get the financial year from a date - I currently have this;

=IF(A2="","FALSE",DATEDIF(R2,TODAY(),"m")<=12)

I need it to effectively give me the financial year from the date, (the financial year being from 1st April to 31st March).

Is there a way I can do it? I don't mind if it's a formula or through VBA.
 
Last edited:

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Hello,

You can use following :

Code:
=YEAR(yourdate)+(MONTH(yourdate)>=4)

Hope this will help
 
Upvote 0

Excel 2010
ABC
220-Mar-18FY 2018FY 2018
318-Nov-18FY 2019FY 2019
5b
Cell Formulas
RangeFormula
B2=IF(MONTH(A2)<4,"FY "&YEAR(A2),"FY "&YEAR(A2)+1)
C2="FY "&YEAR(A2)+(MONTH(A2)>3)
 
Last edited:
Upvote 0
You are welcome ...

Glad you could fix your problem ...
 
Upvote 0

Forum statistics

Threads
1,215,547
Messages
6,125,461
Members
449,228
Latest member
moaz_cma

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