Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Leap Years and Fiscal Periods.
Written by Allen Wyatt (last updated March 20, 2021)
This tip applies to Excel 97, 2000, 2002, and 2003
A company's fiscal year can end at any time, not just when a calendar year ends. When putting together a worksheet, you may want to calculate a date that is one year before or after a given date that represents the end of a fiscal period. This can be done quite easily with any number of formulas, such as the following:
=DATE(YEAR(D1)-1, MONTH(D1), DAY(D1))
This formula takes a date (cell D1) and subtracts a year from it. Thus, if D1 contains the date 6/30/10, then the formula returns 6/30/09.
This works great in most instances because most months have the same number of days from one year to the next. There is, of course, one exception—February. If you have a fiscal year that ends in February, the variable number of days in the month can play havoc with the above formula. If cell D1 contains 2/28/13, then the formula returns 2/28/12, when the real end of the fiscal period is 2/29/12. Similarly, if cell D1 contains 2/29/12, then the formula returns 3/1/11, which is obviously not what was intended.
There are a couple of ways you can determine the end of the fiscal period. The first is through the use of the EOMONTH function. This function is used to return the end of a month a given number of months in the past or future. For instance, if you wanted to know the last day of the month twelve months ago, you can use the following formula:
=EOMONTH(D1,-12)
The EOMONTH function is part of the Analysis ToolPak, so you will need to make sure you have it installed and enabled on your system. (How you do this has been covered in other ExcelTips.)
In some instances you might not want to use EOMONTH. For example, you might be distributing the workbook to others, and you are not sure if they have the Analysis ToolPak installed on their system. In such instances you could use the following formula:
=DATE(YEAR(D1)-1, MONTH(D1)+1, 0)
This formula, just like the EOMONTH function, returns the end of the month for exactly one year ago. Another formula to return the end of month one year ago is as follows:
=D1-365-(DAY(D1)<>DAY(D1-365))
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2314) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Leap Years and Fiscal Periods.
Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!
Doing math with dates is easy in Excel. Doing math with old dates, such as those you routinely encounter in genealogy, is ...
Discover MoreEnter information into a worksheet, and you come to anticipate (and count on) how Excel will interpret that information ...
Discover MoreExcel stores dates and times internally using what is called a serial number. This tip explains how that serial number is ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-03-20 06:54:23
P de la Court
The last two formlas in this exceltip do not always give the same result:
The formula =D1-365-(DAY(D1)<>DAY(D1-365)) gives the same date in the previous year, except when D1 is February 29, in which case it returns February 28.
But if the previous year is a leap year, and the date in D1 was Feb 28, it will return Feb 28 instead of Feb 29 and therefore NOT the end of the month in that leap year.
The slightly modified formula =D1-365-(DAY(D1)>DAY(D1-365)) will return the end of month, exactly the same as =DATE(YEAR(D1)-1, MONTH(D1)+1, 0).
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments