What is difference between Global n Local Macro Variables..?
Answers were Sorted based on User's Feedback
Two types of scopes exist for macro variables: global and
local. Global macro variables exist for the duration of the
SAS session and can be referenced anywhere in the program--
either inside or outside a macro. Local macro variables
exist only during the execution of the macro in which the
variables are created and have no meaning outside the
defining macro.
| Is This Answer Correct ? | 31 Yes | 0 No |
Answer / rag_uss
Global macro variables can be used anywhere in the program,
whereas Local macro variable can be used within that macro only.
| Is This Answer Correct ? | 20 Yes | 0 No |
Answer / vikram s
Global Variables are the one which can be defined at the
beginning of the program and cannot change inside the
program, whereas local variables are the one which can be
instantly with in the program
| Is This Answer Correct ? | 12 Yes | 4 No |
Answer / sandeep
Global macro variable can be created and used anywhere in
the application and global macro variable value stores in
global symbol tables
Local macro variable can be created and used only inside of
the macro block and local macro variable value stores in
local symbol tables
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / balu
global variables,is defined if it is "open code"that is everything outside the macro.and it can be used anywhere in the program.whereas local variables are defined inside the macro.and it is used only inside its own macro.
| Is This Answer Correct ? | 2 Yes | 1 No |
Hi... this is chandu, did MSc Microbiology, trying to get job in SAS tool, PLZ Tell me whether IT industries will give consider my education to gain a job....?
what is the diff. b/w proc means and proc summary?
In PROC PRINT, can you print only variables that begin with the letter “A”?
What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;
what is TAB delimiter? explain about it? what will you do to get TAB delimiter?
data voter; input Age Party : $1. (Ques1-Ques4)($1. + 1); datalines; 23 D 1 1 2 2 45 R 5 5 4 1 67 D 2 4 3 3 39 R 4 4 4 4 19 D 2 1 2 1 75 D 3 3 2 3 57 R 4 3 4 4 ; Idont understand what the (Ques1-Ques4)($1. + 1) means. I have seen (Ques1-Ques4)(4*$1.), but what is (Ques1-Ques4)($1. + 1)? Appreciate all help Thanks
What does proc print, and proc contents are used for?
Describe how you would pass data to macro.
Mention the difference between ceil and floor functions in sas?
what is factor analysis? : Sas-administrator
Mention what are the data types does SAS contain?
What are the parameters of scan function?