Aug 23, 2004 #1 emuye MIS Aug 23, 2004 41 US 2001/03/05 11:46:00.00 How can i format the above date field to YY/DD/MM where yy means year, dd stands for date and mm stands for month thanx
2001/03/05 11:46:00.00 How can i format the above date field to YY/DD/MM where yy means year, dd stands for date and mm stands for month thanx
Aug 23, 2004 #2 lbass Technical User Feb 9, 2002 32,816 US Try: totext({table.datetime},"yy/dd/MM") -LB Upvote 0 Downvote
Aug 23, 2004 Thread starter #3 emuye MIS Aug 23, 2004 41 US I tried your method however it says too many arguments have been given to this function. Upvote 0 Downvote
Aug 23, 2004 #4 lbass Technical User Feb 9, 2002 32,816 US I'm guessing your field is actually a string, so try the following: totext(dtstodate({table.stringdate}),"yy/dd/MM") If this doesn't work, please browse your field and report back with its datatype. -LB Upvote 0 Downvote
I'm guessing your field is actually a string, so try the following: totext(dtstodate({table.stringdate}),"yy/dd/MM") If this doesn't work, please browse your field and report back with its datatype. -LB
Aug 23, 2004 Thread starter #5 emuye MIS Aug 23, 2004 41 US Thank you it worked! You guess is right my field is a stirng . again thanx Upvote 0 Downvote