between FY date caculation

G

Guest

I need the fiscal year start and fiscal year end in order to find out what
Fiscal Year
this case closed in.
So far I have this calculation to get the Fiscal Year Start Date where I am
trying to get the year it closed then add July 1 to that date for the start
of the fiscal year. Once I can also get the Fiscal Year Close date then I
have to find out if the close date was between those dates?
FYBegin:Date( DatePart("yyyy",[Date Close]),yyyy)+DateAdd(m,+7,d,+1)
thanks,
 
G

Guest

THANk you
--
Janis


Van T. Dinh said:
Try:

FYBegin: DateSerial(Year([Date Close]) + (Month([Date Close]) < 7), 7, 1)

--
HTH
Van T. Dinh
MVP (Access)



FilemakerPro_Developer said:
I need the fiscal year start and fiscal year end in order to find out what
Fiscal Year
this case closed in.
So far I have this calculation to get the Fiscal Year Start Date where I
am
trying to get the year it closed then add July 1 to that date for the
start
of the fiscal year. Once I can also get the Fiscal Year Close date then
I
have to find out if the close date was between those dates?
FYBegin:Date( DatePart("yyyy",[Date Close]),yyyy)+DateAdd(m,+7,d,+1)
thanks,
 

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