Help! Need an Invoice Calculation

G

Guest

Hi

I'm trying to put an Invoice report together and am stuck on a calculation/formula. Any suggestions on what I could inpout for the following

"effective date with current year to effective date the next year minus a day
Effective date is 2/4/0
I need it to read this year's invoice as 2/4/2003 to 2/3/2004

Thanks for any help!!!
Jill
 
M

Marshall Barton

Jill said:
I'm trying to put an Invoice report together and am stuck
on a calculation/formula. Any suggestions on what I
could inpout for the following:

"effective date with current year to effective date the next year minus a day"
Effective date is 2/4/01
I need it to read this year's invoice as 2/4/2003 to 2/3/2004.


Try using:

DateSerial(Year(Date),Month(EffectivDate),Day(EffectivDate))
& " to " &
DateSerial(Year(Date)+1,Month(EffectivDate),Day(EffectivDate)-1)
 

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