BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
rawindar
Calcite | Level 5

I have an dataset variable x=p.q,r

these three letters seperated with a single comma.Now my requirement is i need to assign these values to macro variable.

There are three macro variables m1,m2,m3

i need output like m1=p

                          m2=q

                          m3=r

Can anybody give a solution and explanation.Thnk.............u

1 ACCEPTED SOLUTION

Accepted Solutions
Linlin
Lapis Lazuli | Level 10

data _null_;

  x='p,q,r';

  call symputx('m1',scan(x,1));

  call symputx('m2',scan(x,2));

  call symputx('m3',scan(x,3));

run;

%put &m1 &m2 &m3;

View solution in original post

3 REPLIES 3
Linlin
Lapis Lazuli | Level 10

data _null_;

  x='p,q,r';

  call symputx('m1',scan(x,1));

  call symputx('m2',scan(x,2));

  call symputx('m3',scan(x,3));

run;

%put &m1 &m2 &m3;

rawindar
Calcite | Level 5

thanks .... Linlin.You gave me a code in easy pattern.

art297
Opal | Level 21

FWIW: Linlin's suggested code will also work with your example input, i.e.: p.q,r

As for the explanation you asked for, the scan function is described at: http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214639.htm

and call symputx is described at: http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002295697.htm

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 1302 views
  • 0 likes
  • 3 in conversation