Date: Wed, 30 Aug 2006 11:56:42 -0500
Reply-To: Yu Zhang <zhangyu05@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Yu Zhang <zhangyu05@GMAIL.COM>
Subject: Re: PLEASE HELP- Using ODS to Suppress Proc Name in Output
In-Reply-To: <20060830163635.74121.qmail@web58505.mail.re3.yahoo.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
ODS NOPTITLE;
On 8/30/06, Cybie Frontier <cybie_f@yahoo.com> wrote:
>
> Hello All:
>
> I am a SAS newbie. I read somewhere that with the advent of ODS one
> can now suppress the name of the procedure in the output window.
> However, I cannot find the name of the ODS option that does it. Any help
> is greatly appreciated.
>
> Regards
> - CF
>
>
> "Howard Schreier <hs AT dc-sug DOT org>" <nospam@HOWLES.COM> wrote: On
> Wed, 30 Aug 2006 08:53:38 -0700, sharadnc@GMAIL.COM wrote:
>
> >Hi there,
> >
> >I need some help in solving this problem here....I have a situation in
> >which I have two variables
> >which are interlinked say in this fashion where one variables value is
> >part of the name of the other variable. Now I have to display the value
> >of the other variable by using the first variable in the put statment..
> >for eg. look at the commented statement....
> >
> >This situation is a mock of a problem I got here, where I have to do
> >everything in the SAME datastep.....mind it that I have no flexibility
> >of splitting the datastep or create macro variables..
> >
> >data _null_;
> >y='FMHK';
> >var_FMHK='some';
> >*put var_{value of y}=;
> >run;
> >
> >Can anyone think of a solution....
> >Please let me know....
>
> 1 data _null_;
> 2 y='FMHK';
> 3 var_FMHK='some';
> 4 *put var_{value of y}=;
> 5 value_of_var_Y = vvaluex('var_'||y);
> 6 put value_of_var_Y=;
> 7 run;
>
> value_of_var_Y=some
>
>
>
> ---------------------------------
> Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great
> rates starting at 1¢/min.
>
|