Since 5/4/2012 4:16:04 PM, rthomas1 has written 5 articles and participated in 1 conversations. rthomas1 signature: rthomas1
rthomas1's articles:
Items(5) /1
Re: Thousands separator in Output #2022 (5/1/2008 1:52:59 AM) comp.soft-sys.sas There is a COMMA format which does exactly that. -----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of STHB Sent: Thursday, 1 May 2008 9:12 AM To: SAS-L@LISTSERV.UGA.E... RThomas
Re: Howto: prevent Green Arrow in ods html to xls #10025 (5/25/2006 1:47:05 AM) comp.soft-sys.sas Ben, Did you use the no_bottom_matter option as well? Without this, I get a "green arrow" or script at the end of the output as well. Rgds, Rick. -----Original Message----- From: SAS(r) Discussion [mailto:SA... rthomas
Re: Howto: prevent Green Arrow in ods html to xls #7027 (5/24/2006 12:13:15 AM) comp.soft-sys.sas I can run a report on the mainframe using ods html, email it to myself, cut and paste the contents of the email into an excel sheet and, lo and behold, green arrows - top and bottom. This using version 8.2. Out... rthomas
Re: OT - Happy day 16000! #4141 (10/24/2003 2:20:12 AM) comp.soft-sys.sas Ok, I'll bite! Something about SAS turning 40?? > -----Original Message----- > From: Richard A. DeVenezia [SMTP:radevenz@IX.NETCOM.COM] > Sent: Thursday, October 23, 2003 2:55 PM > To: SAS-L@LISTSERV.UGA.ED... rthomas
Re: time. as 00:01:01 #3031 (8/14/2003 2:41:00 AM) comp.soft-sys.sas Arto, How about the tod format? 26 data _null_; 27 x = '13aug2003:09:01:01.0'dt; 28 d=datepart(x); 29 t=timepart(x); 30 put d=:mmddyy6.; 31 put t=:time9.; 32 put t=:tod9.; 33 run; d=081303 t=... rthomas
rthomas1's replies:
Items(1) /1
time. as 00:01:01140 (8/13/2003 12:23:09 PM) comp.soft-sys.sas how can I output time with a leading zero? for example, in getting a datetime value from a SQL table, the date is always mmddyy (or can be formatted) but the timepart(datevar) is formatted as 0:00:00 if hours ... arto.raiskio(87)