Silly Question

R

Robert Sykes

I have a report with an unbound label, what I want it to say is "New members
for 'Month'", being the current month. I can get it to state the what number
is i.e "New members for 12" but I would like it to say "New Members for
December", how is this done?

This is what i have in the control:
="New Members for" & Month(Now())

--
Notice of Confidentiality:
This transmission contains information that may be confidential and that may
also be privileged. Unless you are the intended recipient of the message
(or authorized to receive it for the intended recipient), you may not copy,
forward, or otherwise use it, or disclose its contents to anyone else. If
you have received this transmission in error, please notify us immediately
and delete it from your system.
 
K

Ken Snell [MVP]

Change the label to a textbox, then use this expression as the textbox's
Control Source:

="New Members for " & Format(Date(), "mmmm")
 
R

Rick B

Oops. That would only give you "Dec". The following will spell out the
entire month.



="New Members for" & Format(Date(),"mmmm")
 

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

Similar Threads

Counting on reports 2
Dealing with Null Value's 1
Dcount...Again 2
Blank Pages 2
Year in Query 2
Data validition error in append query 1
Private and Confidential 1
Query Criteria 2

Top