DateDiff() returns an Integer representing how many of the chosen interval
exist between two dates that you feed in as arguments. How exactly does
getting "January" make sense in that context?
How does displaying "January" relate to DateDiff()? The function returns the
number of seconds, minutes, hours,...months, years between two date values.
If you have a field or expression with the value 1 and you want to display
this as January, you can use
MonthName([YourFieldOrExpression])
or
Format(DateSerial(2000,[YourFieldOrExpression],1),"mmmm")
Have a look at this website:www.accessvba.com
It's a very good forum not only allowing you to ask and answer questions,
but also to send your files( which you should zip) for others to look at and
help. You have to register but that is free and you get email notification
when someone answers your question.
Good luck
Chris
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.