![]() |
Financial Years
I have a list of dates and would like to be able to tell which financial year
(1/07 €“ 30/6) each particular date fell into. I need something to automatically work out the Fin Year column in the example below. eg: Date Fin Year 1/4/05 04/05 31/6/05 04/05 1/7/05 05/06 Thanks in advance |
With your date in cell A1, try the following:
=IF(MONTH(A1)<7,RIGHT(YEAR(A1)-1,2)&"/"&RIGHT(YEAR(A1),2),RIGHT(YEAR(A1),2)& "/"&RIGHT(YEAR(A1)+1,2)) Mangesh "James B" <James wrote in message ... I have a list of dates and would like to be able to tell which financial year (1/07 - 30/6) each particular date fell into. I need something to automatically work out the Fin Year column in the example below. eg: Date Fin Year 1/4/05 04/05 31/6/05 04/05 1/7/05 05/06 Thanks in advance |
|
Financial Years
The string =IF(MONTH(A1)<7,IF((YEAR(A1))=2000,"19",LEFT(YEAR( A1),2))&RIGHT(YEAR(A1)-1,2)&"-"&RIGHT(YEAR(A1),2),LEFT(YEAR(A1),2)&RIGHT(YEAR(A1 ),2)&"-"&RIGHT(YEAR(A1)+1,2)) return the result in the form "2006-07" |
All times are GMT +1. The time now is 03:16 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com