Re: format problem #10030 (3/7/2010 4:23:31 AM) comp.soft-sys.sas try option nofmterr; or if you knew the path to the PRODDIM catalog, then specify the path in you fmtsearch option. HTH Yu On Sat, Mar 6, 2010 at 6:33 PM, sasbond1981 sasbond1981 wrote: > Hi All, > > Ple... zhangyu05
Re: how to prevent SAS macro from interpreting "&"3141 (3/1/2010 5:18:12 PM) comp.soft-sys.sas On my WINXP SAS9.1, the code gives me error message, to me the '/' delimiter
is an offending character. I tried different Marco quoting function and
could not get it work. but it will work when i change the r... zhangyu05
Re: an efficiency issue in proc sql #5019 (2/24/2010 5:00:30 AM) comp.soft-sys.sas there were some similar topics discussed before on the list. here is the one might help. http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0812a&L=sas-l&D=0&P=8754 Yu On Tue, Feb 23, 2010 at 10:40 PM, Tong Wang w... zhangyu05
Re: Macro Variable - Data _null_ statement - Help #3024 (2/22/2010 10:39:26 PM) comp.soft-sys.sas you can use symget function to reference it. Thanks! Yu On Mon, Feb 22, 2010 at 3:37 PM, N Shah wrote: > But what if I need to resolve the Macro variables in the same Data step ? > > is it even possible ? ... zhangyu05
Re: Macro Variable - Data _null_ statement - Help016 (2/22/2010 8:54:05 PM) comp.soft-sys.sas move the %put after the RUN; should be working. the %put before RUN will be executed at the datastep complie time. at that time, the macro variables are not available yet. HTH Yu On Mon, Feb 22, 2010 at 2:31... zhangyu05
Re: Further resolve a resolved Macro variable #3032 (2/18/2010 4:14:13 AM) comp.soft-sys.sas > %SUBSTR produces a resolved result because it does not > mask special characters and mnemonic operators in C before processing > it, even though the value of C had previously been masked with the > %NRSTR fu... zhangyu05
Re: macro quoting problem #8116 (2/11/2010 7:07:12 PM) comp.soft-sys.sas %let i = 108; %let text=%nrstr(&nyse_)&i; %put >&textwrote: > I have: > > %let i = 108;% > %let nyse_108 = test; > > &&nyse&i resolves to test > > how do output using %put using &i instead of 108 > > &nyse_108... zhangyu05
Re: U-codes for Greek letters in SAS 9.2 #2017 (2/3/2010 3:07:17 PM) comp.soft-sys.sas the new UNICODE inline formatting function might be what you are looking for. the syntax is ^{UNICODE 03BB}. ^ is escape character. the list of greek UNICODE can be found http://www.unicode.org/charts/PDF/U03... zhangyu05
Re: URGENT: Help me in transpose016 (2/1/2010 4:15:32 PM) comp.soft-sys.sas Is this what you want? data have; input PFAM_CD_PRIMO $ FTF_DRUG_NAME &$50. PLTK_PLAN_ID $ BNFT_DSGN $ ; n=_n_; cards; ALD Avalide 2200003 T3 AXR Adderall XR 2200001 T3 DPE Depakote ER 2200001 T3 FVR Fam... zhangyu05
Re: Simple Sequence in SAS #3022 (1/29/2010 7:47:08 PM) comp.soft-sys.sas retain D -1; Actually, if you use the form of D+1 and want the sequence start with 1, you really do not need the retain statement. On Fri, Jan 29, 2010 at 1:41 PM, saslearn chicago wrote: > Thanks Mark, > ... zhangyu05
Filling Blanks Between 2 Values1274 (11/21/2009 12:24:19 PM) comp.soft-sys.sas
hi, i have a dataset as follows -
date present
01AUG2009
02AUG2009
03AUG2009
04AUG2009 Y
05AUG2009
06AUG2009
07AUG2009
08AUG2009
09AUG2009 Y
10AUG2009
11AUG2009... nickcorbin0000(9)
Tabulate6111 (12/14/2009 12:16:12 PM) comp.soft-sys.sas Dear All:
My portion of my data set is as follows:
Date ID Var
Mar1 A 1
Mar1 A 3
Mar1 A 10
Mar1 A 4
Mar1 A 5
Mar1 B 4
Mar1 B ... randistan69(204)
Reading in a SAS dataset3212 (1/4/2010 6:20:46 PM) comp.soft-sys.sas Hi all,
I am faced with what should be a pretty simple task but the solution
escapes me at the moment. I have a SAS file with the following 4
variables: ID Rater1 Rater2 Rater3. I would like to conduct a m... crisgugiu(90)
"unable to write to template store"1392 (1/18/2010 10:25:24 AM) comp.soft-sys.sas Hi.
An inherited process utilises some proc template templates.
The output is not coming out correctly, and I'm trying to fiddle
around with its settings, but more often than not (usually only a
total f... guya.carpenter(43)
an efficiency issue in proc sql317 (2/24/2010 2:14:37 AM) comp.soft-sys.sas Hi,all I am looking for a more efficient method to do the following: I have a data set (called mydata) with columns date and return and I would like to create a new column that contains the sum of past... wangtong(4)
Change from Baseline .1266 (6/16/2010 2:22:41 PM) comp.soft-sys.sas Dear All:
Below is the sample data i have ...
pat vis res
1 BL 12
1 BL 13
1 wk1 14
1 wk2 13
1 wk3 14
2 BL 10
2 wk1 11
2 wk2 12
2 wk3 ... ali6058(166)