Formula to determine Fiscal Year

S

sa2960

I have the customers start date in Column A, i.e. 4/1/2007.
In Column B I would like to determine what fiscal year they started in.

For example:
If their start date is between 3/1/08 - 2/28/09, I would like the result of
Column B to be FY08/09.
If their start date is between 3/1/07 - 2/28/08, I would like the result of
Column B to be FY07/08.

Is there a formula for this?
 
P

Pete_UK

So, what happens if their start date is between 3/1/08 and 2/28/08 ?
You have an overlap on your two ranges.

Pete
 
S

sa2960

I'm not seeing the overlap. Our fiscal year starts March 1 of one year and
ends February 28 of the following year
 
M

Max

Assuming real dates in A2 down,
try something like this in say, B2, copied down:
=IF(AND(A2>=--"01Mar2008",A2<=--"28Feb2009"),"FY08/09",
IF(AND(A2>=--"01Mar2007",A2<=--"28Feb2008"),"FY07/08",""))
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:21,000 Files:365 Subscribers:65
xdemechanik
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top