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

Hi all,

       Can any body help me to understand how it will executes                                                             

%let one=two;
%let two=three;
%let three=Check;


%put &one;
%put &&one;
%put &&&one;
%put &&&&one;
%put &&&&&one;
%put &&&&&&one;
%put &&&&&&&one;
%put &&&&&&&&one;
%put &&&&&&&&&one;
%put &&&&&&&&&&one;

what is the differnce between &,&& and &&&

How can i understand this concept.



Thanks &Regards

Rawindarreddy



1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
Diamond | Level 26

In addition to Peter's (excellent) suggestion, searching on the forum would reveal this previous forum posting:

https://communities.sas.com/message/12344#12344 that discusses the forward scan rule and the rescan rule of macro variables (which are the topics you should search for in the documentation). In addition, turning on the system option SYMBOLGEN will help you see the trace of macro variable resolution (including how multiple ampersands are resolved) in the SAS Log. Also, there have been some user group papers on how to approach the resolution of multiple ampersands, such as these two -- there are more if you search:

http://www2.sas.com/proceedings/sugi29/063-29.pdf

http://www2.sas.com/proceedings/sugi22/CODERS/PAPER77.PDF

Also, for a beginner's introduction to macro processing in general, I recommend this paper:

http://www2.sas.com/proceedings/sugi28/056-28.pdf

cynthia

View solution in original post

4 REPLIES 4
Peter_C
Rhodochrosite | Level 12

the macro manual is available on-line at http://support.sas.com/documentation

Cynthia_sas
Diamond | Level 26

In addition to Peter's (excellent) suggestion, searching on the forum would reveal this previous forum posting:

https://communities.sas.com/message/12344#12344 that discusses the forward scan rule and the rescan rule of macro variables (which are the topics you should search for in the documentation). In addition, turning on the system option SYMBOLGEN will help you see the trace of macro variable resolution (including how multiple ampersands are resolved) in the SAS Log. Also, there have been some user group papers on how to approach the resolution of multiple ampersands, such as these two -- there are more if you search:

http://www2.sas.com/proceedings/sugi29/063-29.pdf

http://www2.sas.com/proceedings/sugi22/CODERS/PAPER77.PDF

Also, for a beginner's introduction to macro processing in general, I recommend this paper:

http://www2.sas.com/proceedings/sugi28/056-28.pdf

cynthia

rawindar
Calcite | Level 5

thank......u Cynthia.I got it

art297
Opal | Level 21

And, after you've read everything that Peter and Cynthia suggested, try running the following expanded version of your code and see if you can predict what the various resulting values will be:

%let Check=four;

%let one=two;

%let two=three;

%let three=Check;

%let four=five;

%let five=six;

%put &one;

%put &&one;

%put &&&one;

%put &&&&one;

%put &&&&&one;

%put &&&&&&one;

%put &&&&&&&one;

%put &&&&&&&&one;

%put &&&&&&&&&one;

%put &&&&&&&&&&one;

%put &&&&&&&&&&&one;

%put &&&&&&&&&&&&one;

%put &&&&&&&&&&&&&one;

%put &&&&&&&&&&&&&&one;

%put &&&&&&&&&&&&&&&one;

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
  • 4 replies
  • 2886 views
  • 0 likes
  • 4 in conversation