Date: Wed, 30 Aug 2006 09:36:35 -0700
Reply-To: Cybie Frontier <cybie_f@YAHOO.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Cybie Frontier <cybie_f@YAHOO.COM>
Subject: PLEASE HELP- Using ODS to Suppress Proc Name in Output
In-Reply-To: <200608301626.k7UGPwvl006855@mailgw.cc.uga.edu>
Content-Type: text/plain; charset=iso-8859-1
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.