Re: How can I convert a date to a FISCAL year

  • Thread starter Thread starter John Vinson
  • Start date Start date
J

John Vinson

Can I convert a date in ACCESS to a fiscal year?
Using the year(#date#) function converts date to calendar year.
Is there a function to do the same but convert to Fiscal year assuming July
to June?

Use the DateAdd function to shift the year. If FY 2005 starts on
7/1/2004, the expression

Year(DateAdd("m", 6, [datefield]))

will return the proper fiscal year number.

John W. Vinson[MVP]
Join the online Access Chats
Tuesday 11am EDT - Thursday 3:30pm EDT
http://community.compuserve.com/msdevapps
 
Back
Top