Date: Tue, 10 Jul 2007 08:12:04 -0400
Reply-To: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject: Re: Plz help
I don't have IML to test it, but I know that some DATA-step functions are
available in IML also. So you could try
call symput("macro_var",value);
to write the current content of "value" to a SAS macro-var, which you can
use as
¯o_var
at any place, the constant you brought to it is also possible.
To see if it is working, just try a
%put ¯o_var;
after the IML-step.
Hope that helps.
Gerhard
On Tue, 10 Jul 2007 07:34:51 -0400, Mukta Paliwal
<mukta.paliwal@IITB.AC.IN> wrote:
>Dear SAS-L user group,
>
>I am using proc IML and I wanted to use a value of variable(Lets A)
>calculated in Proc IML and wanted to use this value to other Proc IML in
>the same work environment. How I should store this value to variable A so
>that I can use it later in some other program.
>
>Thanks in advance.