how to assign a macro value to a variable?

Answers were Sorted based on User's Feedback



how to assign a macro value to a variable?..

Answer / guest

by symget function;

SYNTAX:
variable=SYMGET(macro variable);

Is This Answer Correct ?    10 Yes 4 No

how to assign a macro value to a variable?..

Answer / ganesh k

if it is a Char then Variable="&MacroVar.";
if it is a Numaric then Variable=%eval(&MacroVar.) or %
sysevalf(&MacroVar.);

Is This Answer Correct ?    5 Yes 0 No

how to assign a macro value to a variable?..

Answer / sr

to assign macro value means it already created then

variable=symget(macro var);

variable will get value of that macro variable

Is This Answer Correct ?    3 Yes 1 No

how to assign a macro value to a variable?..

Answer / radhiv kumar sure

8 TO 9 TYPES WE CAN ASSIGN THE MACRO VALUE TO A VARIABLE.


CALL SYMPUT
%LET
SYMGET

Is This Answer Correct ?    2 Yes 2 No

how to assign a macro value to a variable?..

Answer / manna

data x;
%let a=01jan1960;
b=symget("a");
run;
IT IS Tested

Is This Answer Correct ?    0 Yes 0 No

how to assign a macro value to a variable?..

Answer / saritha

%let variable=value;
like
%let city='hyd';

Is This Answer Correct ?    2 Yes 7 No

how to assign a macro value to a variable?..

Answer / cool dude

Creating a Macro.

%Let a='City';

Assigning the macro value of a (which is 'City') to variable.

Data _null_;
b=&a;
put b= ;
run;

Is This Answer Correct ?    0 Yes 6 No

how to assign a macro value to a variable?..

Answer / srinivas,korasavada

and also we can assign like

%let variable=value;
means the value is save in that variable

Is This Answer Correct ?    3 Yes 10 No

Post New Answer

More SAS Interview Questions

Differentiate input and infile.

0 Answers  


what are different type of sas servers ? On which server does the sas code execute ?

4 Answers   TCS,


what is the difference between floor and ceil functions in sas? : Sas-administrator

0 Answers  


how do we get duplicate observations in a separate dataset?

6 Answers   CitiGroup,


explain what is factor analysis? : Sas-administrator

0 Answers  






what is the difference between proc report and proc format?

7 Answers   CTS,


How would you code a merge that will keep only the observations that have matches from both sets?

5 Answers  


Differentiate between proc means and proc summary.

0 Answers  


define table lookup and how may ways it can be done...explian

3 Answers  


I need level 2 to 5 sas using companies in india

0 Answers  


Explain the special input delimiters used in sas programming.

0 Answers  


How many ways to overcome a missing values???

0 Answers   HSBC,


Categories