BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
jamal01
Fluorite | Level 6

Hello,

Screenshot I will be referring to:

jamal01_0-1669730545528.png

 

I am trying to save the value of "iterations" into a macro variable in my sas code.

I saved this table into a txt file, as it is an output from another sas program. 

 

Is it possible for me to take the 10 from this table and create a macro variable with this value?

 

Thank you

 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

data _null_;

    set have;

    if field='Iterations' then call symputx('macrovariablename',value);

run;

--
Paige Miller

View solution in original post

3 REPLIES 3
jamal01
Fluorite | Level 6

optmodel

PaigeMiller
Diamond | Level 26

data _null_;

    set have;

    if field='Iterations' then call symputx('macrovariablename',value);

run;

--
Paige Miller
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 982 views
  • 1 like
  • 3 in conversation