Financial Year Date Conversion How do I change a date into a Financial Year format?
i.e. 30/06/2016 into 2015/2016
Financial Year Date Conversion How do I change a date into a Financial Year format?
i.e. 30/06/2016 into 2015/2016
Copy+Paste this into a new Cell:
=IFERROR(IF(MONTH(N3)>=7,CONCATENATE(YEAR(N3),"/",YEAR(N3)+1),CONCATENATE(YEAR(N3)-1,"/",YEAR(N3))),"Issue With Date in Cell N3")
New Date: "2015/2016"
Change Cell N3 to cell with your date. Make sure the cell is in a "General" format.