Jul 16, 2004 #1 cschnable Programmer May 24, 2001 36 US How do I have a form field display an existing number field with Date() if The number field = 971 and I put [Field]&"_"&Date() I get 971_7/16/2004 I want it to read out as 971_7_16_2004 Any help is appreciated - Thank you!
How do I have a form field display an existing number field with Date() if The number field = 971 and I put [Field]&"_"&Date() I get 971_7/16/2004 I want it to read out as 971_7_16_2004 Any help is appreciated - Thank you!
Jul 16, 2004 1 #2 scottian Programmer Jul 3, 2003 955 GB try this =[MyNumber] & "_" & Format(Date(),"d") & "_" & Format(Date(),"m") & "_" & Format(Date(),"yyyy") "My God! It's full of stars... Upvote 0 Downvote
try this =[MyNumber] & "_" & Format(Date(),"d") & "_" & Format(Date(),"m") & "_" & Format(Date(),"yyyy") "My God! It's full of stars...
Jul 16, 2004 Thread starter #3 cschnable Programmer May 24, 2001 36 US Thank you for your help - I just figured it out - I used =[MyNumber] & "_" & Format(Date(),"dd_mm_yyyy") It worked fine Upvote 0 Downvote
Thank you for your help - I just figured it out - I used =[MyNumber] & "_" & Format(Date(),"dd_mm_yyyy") It worked fine