LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 2006, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 6 Mar 2006 14:02:56 -0600
Reply-To:   Yu Zhang <zhangyu05@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Yu Zhang <zhangyu05@GMAIL.COM>
Subject:   Re: date in SAS to date in EXCEL
Comments:   To: Stefan Pohl <stefan.pohl@wiso.uni-koeln.de>
In-Reply-To:   <05ea01c64152$473de440$1d9e5f86@simurechner>
Content-Type:   text/plain; charset=ISO-8859-1

Stefan,

Sorry, After I did my homework, We do have Eurdfddw. format. Please discard the previous post, here is the the full code to answer your question.

options dflang=spanish;

data test;date1=put('04APR96'd,EURDFDD8.); put date1=; run;

proc export data=test outfile='c:\test.xls' dbms=excel replace; run;

On 3/6/06, Stefan Pohl <stefan.pohl@wiso.uni-koeln.de> wrote: > > Hi, > > I want to export from SAS to excel a date, for example 04.04.96 (format > eurdfdd8. in SAS) to 04.04.96 in EXCEL. > > How can I do this, > > thank you > > Stefan >


Back to: Top of message | Previous page | Main SAS-L page