Calculating the Fiscal Year in Excel
Mar.10, 2010 in
Uncategorized
Jason came up with this nifty formula to calculate the fiscal year in excel based on a string in the YYYY-MM-DD format.
It could be adapted to support other formats by changing the MID substring values ( MID is the excel Substring function).
This example references a date in cell AB7 — you’ll have to change that to refer to your date field.
=IF(MID(AB7,6,2)=”10″,MID(AB7,1,4)+1,IF(MID(AB7,6,2)=”11″,MID(AB7,1,4)+1,IF(MID(AB7,6,2)=”12″,MID(AB7,1,4)+1,0+MID(AB7,1,4))))
[ad#Google Adsense]

Leave a Reply