Dec 10, 2003 #1 H1004 MIS Oct 28, 2003 136 US I used the following code to grab the current date (system date): NOWDATE/A8 = TODAY(NOWDATE); And it comes out as 12/10/03 However, I wanted to output the following format: 20031210.. Any suggestion is greatly appreciated.
I used the following code to grab the current date (system date): NOWDATE/A8 = TODAY(NOWDATE); And it comes out as 12/10/03 However, I wanted to output the following format: 20031210.. Any suggestion is greatly appreciated.
Dec 11, 2003 #2 Tewy Programmer Jul 31, 2003 16 GB Try this DATE1/I8=&YYMD; If you want the date in alpha format do DATE1/I8=&YYMD; DATE2/A8=EDIT(DATE1); Regards Tewy Upvote 0 Downvote
Try this DATE1/I8=&YYMD; If you want the date in alpha format do DATE1/I8=&YYMD; DATE2/A8=EDIT(DATE1); Regards Tewy
Dec 15, 2003 Thread starter #3 H1004 MIS Oct 28, 2003 136 US Thank you, it works great!!! Upvote 0 Downvote
Dec 15, 2003 #4 kiddpete MIS Oct 9, 2003 788 US Tewy is a little of on one thing. The alpha process could be: DATE2/A8='&YYMD'; and DATE1 would not be needed. Upvote 0 Downvote
Tewy is a little of on one thing. The alpha process could be: DATE2/A8='&YYMD'; and DATE1 would not be needed.