A awake2424 Registered User. Local time Today, 10:14 Joined Oct 31, 2007 Messages 479 Aug 15, 2014 #1 Code: Me.Day_Received = WeekdayName(Weekday(Date)) The above code shows Friday. What is the correct synatx to display: Friday, 8/15/2014? Thank you.
Code: Me.Day_Received = WeekdayName(Weekday(Date)) The above code shows Friday. What is the correct synatx to display: Friday, 8/15/2014? Thank you.
jdraw Super Moderator Staff member Local time Today, 11:14 Joined Jan 23, 2006 Messages 15,498 Aug 15, 2014 #2 Did you try debugging? Msgbox WeekdayName(Weekday(Date))
V vbaInet AWF VIP Local time Today, 16:14 Joined Jan 22, 2010 Messages 26,328 Aug 15, 2014 #3 You want to display this whole string? awake2424 said: Friday, 8/15/2014? Thank you. Click to expand...
You want to display this whole string? awake2424 said: Friday, 8/15/2014? Thank you. Click to expand...
MarkK bit cruncher Local time Today, 08:14 Joined Mar 17, 2004 Messages 8,571 Aug 15, 2014 #4 Try . . . Code: debug.print format(Date(), "dddd, m/d/yy") & "? Thank you."
B burrina Registered User. Local time Today, 10:14 Joined May 10, 2014 Messages 972 Aug 15, 2014 #5 Here is just one more example: SomeField=Format([SomeDate],"dddd") Click to expand... HTH