Special function Field?

  • Thread starter Thread starter Denise
  • Start date Start date
D

Denise

Is there a way to create a field that gives me the Month
after the user enters in the full date? In my form they
have to enter the full date - in my table I would like it
read the date and give me the Month. I export this file
to excel every day and I don't want to mess around with
the data alot before creating a pivot table.

I hope that made sense....

Denise
 
I am not entirely sure from your description but if you store the date
(which has more info. than just the month) in the Access Table and you only
want the month exported to Excel, then you can simply create a Query with
the Calculated Field:

DerivedMonth: Month([DateField])

in stead of the DateField (plus other Fields you want in Excel) and then
export the Query rather than the Table.
 
Try the DateAdd and Format functions. Together, you
should be able to add one month to the given date and
then format it to show just the month.

This is what I used in my Query:

=Format(DateAdd("m", 1, [MyFieldName]), "m")
 
Back
Top