LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (July 2007, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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

&macro_var

at any place, the constant you brought to it is also possible.

To see if it is working, just try a %put &macro_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.


Back to: Top of message | Previous page | Main SAS-L page