Beginning Of Month

J

Jason Penny

Trying to find a way to set the default value of a text
box to always be the beginning of the current month.
Thanks a bunch!
 
P

Peter Doering

Trying to find a way to set the default value of a text
box to always be the beginning of the current month.
Thanks a bunch!

Me!MyTextBox.Value = DateSerial(Year(Date()),Month(Date()),1)

HTH - Peter
 
Top