to show a fiscal year

  • Thread starter Thread starter Alex
  • Start date Start date
A

Alex

I'm using the following to show on a form the previous,
current, and future years:
=Format(Date(),"yyyy")-1, =Format(Date(),"yyyy"), =Format
(Date(),"yyyy")+1.

How could I show the fiscal years if it's from Aug 1 to
Jul 31?

Thanks
 
Thanks, everybody.
It looks like I could use
Year(DateAdd("m",-5,Date()))
Please, reply if it's not correct.
 
Back
Top