Jan 15, 2004 #1 IS300 MIS Joined Oct 29, 2003 Messages 121 Location CA How do I convert a character string to a date format? For example, I want to convert the string 01/15/2004 to the date 01/15/2004, so I can manipulate it. Any suggestions? Thanks,
How do I convert a character string to a date format? For example, I want to convert the string 01/15/2004 to the date 01/15/2004, so I can manipulate it. Any suggestions? Thanks,
Jan 15, 2004 #2 SarkMan Programmer Joined Apr 1, 2002 Messages 182 Location US use the cdate function like so cdate("01/15/2004" Upvote 0 Downvote
Jan 15, 2004 Thread starter #3 IS300 MIS Joined Oct 29, 2003 Messages 121 Location CA Beautiful! Thanks SarkMan! Upvote 0 Downvote