now() Date and Time Formatting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I get "mm\/dd\/yyyy hh\:nn\:ss" to show the date and time (with AM/PM)
in not 24 hour time?

Thanks!
Adam
 
How do I get "mm\/dd\/yyyy hh\:nn\:ss" to show the date and time (with AM/PM)
in not 24 hour time?

Thanks!
Adam

Format(Now(),"mm/dd/yyyy hh:nn:ss AM/PM")
09/22/2006 01:30:22 PM

Format(Now(),"m/d/yyyy h:nn:ss AM/PM")
9/22/2006 1:29:43 PM
 
Back
Top