Since 5/5/2012 12:03:10 AM, hoxiea has written 2 articles and participated in 4 conversations. hoxiea signature: hoxiea
hoxiea's articles:
Items(2) /1
macro variable based on do loop control variable247 (7/27/2007 5:09:16 PM) comp.soft-sys.sas Hello, everyone! Just a quick question for you all on macro variables; I appreciate your assistance and thank you in advance for your help. Working inside of a macro, I'd like to process some data sets using ... hoxiea
dropped leading zeros converting from char to num561 (6/14/2007 6:48:56 PM) comp.soft-sys.sas Hey, everyone. I'm trying to convert a three-digit char variable that contains only three digits into a three-digit num variable in a SAS 9.1 data step. When I make the conversion using something like data i... hoxiea
hoxiea's replies:
Items(3) /1
dropped leading zeros converting from char to num561 (6/14/2007 6:48:56 PM) comp.soft-sys.sas Hey, everyone. I'm trying to convert a three-digit char variable that contains only three digits into a three-digit num variable in a SAS 9.1 data step. When I make the conversion using something like data i... hoxiea(6)
Re: dropped leading zeros converting from char to num #4424 (6/14/2007 7:30:09 PM) comp.soft-sys.sas code=CATS(vvalue(m1),vvalue(m2),vvalue(m3)); On 6/14/07, hoxiea@gmail.com wrote: > On Jun 14, 2:54 pm, Reeza wrote: > > On Jun 14, 12:48 pm, hox...@gmail.com wrote: > > > > > Hey, everyone. I'm trying to c... datanull(3058)
Re: macro variable based on do loop control variable #3128 (7/27/2007 6:46:40 PM) comp.soft-sys.sas Aside from the fact that this seems like you need to redo your data structure so that you can utilize by group processing rather than rely on a macro, Try : %let j=%eval(&i+1); Unlike the Dat aStep the Macro... tobydunn(6070)