Apr 6, 2001 #1 rmz8 Programmer Aug 24, 2000 210 US How can I place the current date, with time into a variable? It has to look something like this: 0406010908 Which represents the month, the day, the year, hour, and minutes (MMDDYYHHMM). Thanks Ryan ;-]
How can I place the current date, with time into a variable? It has to look something like this: 0406010908 Which represents the month, the day, the year, hour, and minutes (MMDDYYHHMM). Thanks Ryan ;-]
Apr 6, 2001 #2 tlhawkins Programmer Dec 28, 2000 797 US Try this, <CFSET MYDATETIMETHINGY = "#DateFormat(Now(),'MMDDYY')#"&"#TimeFormat(now(),'hhmm')#" > Let me know if it works Upvote 0 Downvote
Try this, <CFSET MYDATETIMETHINGY = "#DateFormat(Now(),'MMDDYY')#"&"#TimeFormat(now(),'hhmm')#" > Let me know if it works
Apr 6, 2001 Thread starter #3 rmz8 Programmer Aug 24, 2000 210 US Thanks, will try it out. Ryan ;-] Upvote 0 Downvote