View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
OssieMac OssieMac is offline
external usenet poster
 
Posts: 2,510
Default Help dealing with a fiscal year rather than a calendar year

Hi tyler,

What about having 2 columns for your fiscal year and insert actual start and
finish dates for the fiscal year. Eg 1 July 2007 in column AC and and 30 June
2008 in column AD. You also need an actual date for the purchase not just a
year but it could just be the first day of the fiscal year and it would work.

If you want you can even custom format them to yyyy so that they only
display the years but calculations are based on the actual underlying date.

Your formula can then test for = than the start date and =< than end date
as per the following example:-

=IF(AND($O2+$AA2=AC$2,$O2+$AA2<=AD$2),ABS(FV($AB2 ,$AA2,0,$S2,1)),0)

Note: The above formula has all the values in row 2. Your formula had the
fiscal year in row 1. I don't know how your worksheet is set up but there is
no reason that the start and end dates cannot be in row 1.


Regards,

OssieMac


"Tyler" wrote:

Hello,
I am trying to get my mind around how to project a future cost of replacing
a piece of capital equipment. I can do it for a calendar year but since we
are on a July to June year the costs may or may not fall into the correct
year heading. Here is where I am so far:
=IF(YEAR($O2)+$AA2=AC$1,ABS(FV($AB2,$AA2,0,$S2,1)) ,0)
with: O2 being the purchase date of the original capital equipment
AA2 being the useful life or time in years before we need to replace the
capital equipment.
AC1 being a year or fiscal year column ie. 2007, 2008,.... where the
replacement cost of the capital equipment would calculate
AB2 being the cost inflator ie. 1.5%
S2 being the cost of the equipment when originally pruchased.

As always thanks for your help.