Jun 12, 2005 #1 Duane8889 Programmer Dec 14, 2001 46 US Hello How can I display current date in a textbox? ex June 12, 2005. I don't want 6/12/05 or Sunday, June 12, 2005. I tried Code: =Format(Date(),"mmmm dd "," yyyy") in the control source of the textbox on a form but I just get #Error in the textbox.
Hello How can I display current date in a textbox? ex June 12, 2005. I don't want 6/12/05 or Sunday, June 12, 2005. I tried Code: =Format(Date(),"mmmm dd "," yyyy") in the control source of the textbox on a form but I just get #Error in the textbox.
Jun 12, 2005 1 #2 Remou Technical User Sep 30, 2002 13,030 BE Hi Code: =Format(Date(),"mmmm dd"", ""yyyy") Upvote 0 Downvote
Jun 12, 2005 Thread starter #3 Duane8889 Programmer Dec 14, 2001 46 US thanks Remou, just what I needed! Upvote 0 Downvote
Jun 12, 2005 1 #4 earthandfire Programmer Mar 14, 2005 2,924 GB Why all the extra quote symbols: =Format(Date(), "mmmm dd, yyyy") should do the trick. Hope this helps. Upvote 0 Downvote
Why all the extra quote symbols: =Format(Date(), "mmmm dd, yyyy") should do the trick. Hope this helps.
Jun 12, 2005 Thread starter #5 Duane8889 Programmer Dec 14, 2001 46 US earthandfire Yes, you are right it does work as you showed! thankQ Upvote 0 Downvote