Dec 13, 2007 #1 Paul1981 IS-IT--Management Jun 30, 2006 36 GB Hi, I'm using Crystal Reports XI and have a number field which is: 20071213 YYYYMMDD how do I make this into a date field crystal will reconise? Thanks Paul
Hi, I'm using Crystal Reports XI and have a number field which is: 20071213 YYYYMMDD how do I make this into a date field crystal will reconise? Thanks Paul
Dec 13, 2007 #2 dgillz Instructor Mar 2, 2001 10,038 US Numbertodate({YourField}) You will need to download the numbertodate() function first: http://technicalsupport.businessobj...sliceId=&dialogID=5070535&stateId=1 0 5068442 Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports http://www.gainfocus.biz "What version of URGENT!!! are you using? Upvote 0 Downvote
Numbertodate({YourField}) You will need to download the numbertodate() function first: http://technicalsupport.businessobj...sliceId=&dialogID=5070535&stateId=1 0 5068442 Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports http://www.gainfocus.biz "What version of URGENT!!! are you using?
Dec 13, 2007 #3 IanWaterman Programmer Jun 26, 2002 3,511 GB Create formula date(tonumber(left(totext(20071213,0,""), 4)), tonumber(mid(totext(20071213,0,""), 5,2)), tonumber(right(totext(20071213,0,""), 2))) replace 20071213 with your number field. Ian Upvote 0 Downvote
Create formula date(tonumber(left(totext(20071213,0,""), 4)), tonumber(mid(totext(20071213,0,""), 5,2)), tonumber(right(totext(20071213,0,""), 2))) replace 20071213 with your number field. Ian
Dec 30, 2007 #4 dtmb Technical User Jan 22, 2007 54 JM Thanks for the info on this one. Upvote 0 Downvote