Since 5/4/2012 3:55:12 PM, arto1 has written 6 articles and participated in 18 conversations. arto1 signature: arto1
arto1's articles:
Items(6) /1
working with changing foldername in IE056 (10/20/2003 5:53:46 PM) comp.soft-sys.sas would anyone have a suggestion for working with internet explorer temp files in the following scenario server running sas 9 is accessing files over the network (Windows 2003 and Windows 2000 servers) users fi... Arto
discreet values in Proc Gmap (Java vs Gif)060 (7/9/2003 4:43:28 PM) comp.soft-sys.sas this code, discussed a couple days ago in another thread runs fine but has a couple oddities at least under SAS 8x and Windowx XP Pro 1. it outputs the Gif image to the current logged on users \Documents and S... Arto
Sybase Server with proc sql069 (7/2/2003 4:34:02 PM) comp.soft-sys.sas anyone using sybase with proc sql? would you care to post a sample snippet of libname/code extract? could not locate the odbc drivers for sybase on the sas cd? ... Arto
Error: File is in Use252 (6/25/2003 8:45:17 PM) comp.soft-sys.sas sometimes, a macro I use encounters a file which is in use this is for jobs that run at night when there are no users on the network the log shows as follows ERROR: File is in use, NOTE: The SAS System stopp... Arto
datepart autoformat in a macro053 (6/23/2003 7:00:39 PM) comp.soft-sys.sas section of a macro executes an item that appears as a = put( intnx ( 'day', date(), -1), mmddyy6. ); this returns to a macrovariable in another section today-1, ie. 062203 question is, what dateformat would ... Arto
sorting by group540 (10/7/2003 10:44:18 AM) comp.soft-sys.sas I want to sort by _name_ so that _CP_ is in ascending order...........? _VAR_,_NAME_,_LABEL_,COL1 In_Comp_a_202,_CPK_,Capability Index CPK,2.3520803202 In_Comp_a_202,_CP_,Capability Index CP,2.7704126269 In_Co... Graeme.Kirton(10)
Re: everything coming up missing138 (10/7/2003 10:54:36 PM) comp.soft-sys.sas William- I ran a modified version of your program without errors. What do you see with %put _global_; ? book1.xls check message age =70 'too old' birthdate=. 'birthdate missing' 351 ... pchoate(2551)
Re: NLIN157 (10/10/2003 2:28:16 PM) comp.soft-sys.sas Your code runs OK for me (V. 9.0; Win2K). What happens when you run another PROC against the dataset? Try proc means data=Enzyme; run; On Fri, 10 Oct 2003 11:21:05 +0200, j�rgen kanters wrote: >I try to... Howard_Schreier(1506)
Re: import Excel file152 (10/20/2003 10:24:32 PM) comp.soft-sys.sas I assume you are using SAS/Access for PC file formats (Access/ODBC will work as well, but not with proc import). If you are using office xp and SAS 8.2, you ought to use DBMS=EXCEL2000 (or not - I believe that ... jkelley(296)
Re: working with changing foldername in IE166 (10/21/2003 11:00:10 PM) comp.soft-sys.sas Arto Raiskio wrote: > would anyone have a suggestion for working with internet explorer temp files > in the following scenario > > server running sas 9 is accessing files over the network (Windows 2003 and > W... cassell.david(1747)
Re: working with changing foldername in IE #2139 (10/22/2003 12:17:10 PM) comp.soft-sys.sas Arto: If you use the /S option on a piped DOS DIR command DOS will search the sub-directories, without you having to specify their ( changing ) names. Since it's possible to have the same file in multiple temp... Harry.Droogendyk(308)
Parsing child strings from a parent string834 (10/23/2003 10:24:12 PM) comp.soft-sys.sas hello. solaris, sas v8.2. i am working on parsing child substrings of length 90 from a parent string. here is an example parent. SUBJECT IS WILLING TO HOLD SUN EXPOSURE REASONABLY CONSTANT AND TO AVOID USE ... paszty(2)
Re: merging many cells to one with rtf194 (10/30/2003 12:06:02 AM) comp.soft-sys.sas I don't think proc report can do it. I will be very interested in seeing any sample/trick that can fool proc report to do what you want. If you get any offline response please share with me. That said, I have ... yhuang(489)
Re: ODS, PDF and page breaks438 (11/3/2003 10:43:16 PM) comp.soft-sys.sas Something like this?? ods pdf file="C:\temp\for Pete's Sake.pdf" style=barrettsblue startpage=never; proc print data=sashelp.class; run; goptions hsize=3.25 in vsize=4.5 in; symbol1 v=dot i=rls; proc gplot... khd8(68)