Jun 15, 2004 #1 webfuture MIS Jan 17, 2003 65 CA Hi all, I am trying to convert a numeric value of 38142 for example to a date. This value is the number of days since 1/1/1900. I have tried many thing with to_date, cast... and it did not work. Anyone have tips for me. Thanks,
Hi all, I am trying to convert a numeric value of 38142 for example to a date. This value is the number of days since 1/1/1900. I have tried many thing with to_date, cast... and it did not work. Anyone have tips for me. Thanks,
Jun 15, 2004 2 #2 sem Programmer Jun 3, 2000 4,709 UA to_date('1/1/1900','dd/mm/yyyy') + 38142 Regards, Dima http://seminihin.narod.ru Upvote 0 Downvote
Jun 15, 2004 Thread starter #3 webfuture MIS Jan 17, 2003 65 CA Dima, Thanks, I knew it was simple. Regards, Upvote 0 Downvote