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

%let i=1 ;

%let var_1 = firstname;

%let firstname = yourname;

With the code given above I want to print 'yourname' (without quotes) in the SAS log. Condition is that I have to use macro variables i and var_1 . something like %put value= &&&var_&i ; (it does not work for me) .

Make sure we do not use var_1 directly and user macro variable i to get value of var_1 .

Any suggestions on code ??

1 ACCEPTED SOLUTION

Accepted Solutions
mohamed_zaki
Barite | Level 11

%let i=1 ;

%let var_1 = firstname;

%let firstname = yourname;

%put value=&&&&&&var_&i;

The Dreaded Double and Triple Ampersands

View solution in original post

3 REPLIES 3
mohamed_zaki
Barite | Level 11

%let i=1 ;

%let var_1 = firstname;

%let firstname = yourname;

%put value=&&&&&&var_&i;

The Dreaded Double and Triple Ampersands

Ksharp
Super User

Very funny thing, Why do you behave in this way .

why not use   %let var_1 =  &firstname; ?

%let i=1 ;

%let var_1 = firstname;

%let firstname = yourname;

options symbolgen;

%put value= %superq(&&var_&i) ;

Xia Keshan

ucvikas
Obsidian | Level 7

Yeah looks funny but actually it is not. I had some specific requirement and did not want to put long reason to use this way of working  .Anyway thanks for the suggestion . I got my answer By Mohamed.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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