Date: Mon, 18 Sep 2006 09:53:56 -0700
Reply-To: "Terjeson, Mark" <Mterjeson@RUSSELL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Terjeson, Mark" <Mterjeson@RUSSELL.COM>
Subject: Re: Hi This is regardng Date format.
Content-Type: text/plain; charset="us-ascii"
Hi Vj,
You can create a custom version of monyy
with the picture statement of proc format.
proc format;
picture monhyy
low-high='%b-%0y' (datatype=date);
run;
data _null_;
x = date();
format x monhyy.;
put _all_;
run;
Hope this is helpful.
Mark Terjeson
Senior Programmer Analyst, IM&R
Russell Investment Group
Russell
Global Leaders in Multi-Manager Investing
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of vj
Sent: Monday, September 18, 2006 9:32 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: Hi This is regardng Date format.
Hi,
Can anybody tell how to get output for the date format
JUN-06 .
I want to display date format include Hiphon.
Please mail back me ..
Thanks in Advance.
Vj..