G Guest Oct 21, 2004 #1 HI Is there any way to show the today's date in the name of the report? Thanks, Dan
F fredg Oct 21, 2004 #2 HI Is there any way to show the today's date in the name of the report? Thanks, Dan Click to expand... You just wish to show the name and date? Add an unbound control to the report header. Set it's Control source to: = Name & " " & format(Date(),"mmm d, yyyy") Change the formatting of the date to whatever format you wish.
HI Is there any way to show the today's date in the name of the report? Thanks, Dan Click to expand... You just wish to show the name and date? Add an unbound control to the report header. Set it's Control source to: = Name & " " & format(Date(),"mmm d, yyyy") Change the formatting of the date to whatever format you wish.