Try
=Format(Date(),"mm") & "/01/" & (Format(Date(),"yy")
Main Topics
Browse All TopicsI have an Access 2003 report with a text box on it. I would like to set the Data Control Source for the texbox to the current date, except it should default to the first day of the month. Form example, if the today is July 15, 2009, then the text box needs to be set for the First of July, 2009 instead of the 15th. 07/01/09 I have tried to write an expression in the textbox properties, under the Data Tab and in the Control Source, but I can't find the right syntax. I tried things like below.
=Format(Date(),"mm") & "/01/" & (Format([Date]),"yy")
=DateSeria(l(Year(Date)),(
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
The syntax below works, but when I open the report there is a list of months, little text boxes, representing each month of the year, the second box now shows November, the next box shows December, etc., the only problem is that the first month shows as 10/01/09 instead of "October". Do you have any ideas to fix that? Thanks.
=Format(Date(),"mm") & "/01/" & Format(Date(),"yy")
Business Accounts
Answer for Membership
by: DatabaseMXPosted on 2009-10-31 at 15:20:58ID: 25711812
Try this:
h(Date),1)
DateSerial(Year(Date),Mont
mx