Changing month # to word

D

Dragon

I have a report based on a query that performs calculations within a monthly
period. The query asks for a 2 digit month.

Is there a way to have the full name of the month come up in the report
header?
 
M

Marshall Barton

Dragon said:
I have a report based on a query that performs calculations within a monthly
period. The query asks for a 2 digit month.

Is there a way to have the full name of the month come up in the report
header?


Try using the MonthName function. See VBA Help for details.
 
D

Dragon

I'm not familiar with VBA and the help doesn't have much information.
Could you explain more or point me to some where that has more information?

Dragon
 
J

John Spencer

You should be able to use a control with its source set to
=MonthName([Name of the query Parameter Prompt])



John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County
 
D

Dragon

Thanks! works like a charm!!

Dragon

John Spencer said:
You should be able to use a control with its source set to
=MonthName([Name of the query Parameter Prompt])



John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County
I'm not familiar with VBA and the help doesn't have much information.
Could you explain more or point me to some where that has more information?

Dragon
 
M

Marshall Barton

There are two Help systems, you get to one from the Access
Window and the other from the VB Editor. You don't need to
know anything about VBA to use the Help system in the VB
Editor. It's where the details of all the built in
functions are listed and explained.
 

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