Can you excute a macro within a macro? Describe.
Answers were Sorted based on User's Feedback
Answer / i.hari prasad reddy
we can excute a macro within a macro using symget.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / mallikarjuna reddy
such macros are called nested macros. that can be obtained
by using symget and call symput macros.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / yella reddy
Above answer not sufficient. using SYMGET can resolve upper
most macro only, but not for nested macros. for executing
macro with in macro use RESOLVE function.
| Is This Answer Correct ? | 1 Yes | 0 No |
how many types of prompts are there? : Sas-bi
What are the advantages of using sas?
Why is a STOP statement needed for the point=option on a SET statement?
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
how does sas handle missing values in procs? : Sas programming
what are all the ways to define macro variable??
2 Answers GSK GlaxoSmithKline,
If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to do?
libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak
What is the difference between %put and symbolgen? : sas-macro
Have you ever used the SAS Debugger?
what kind of variables are collected in AE dataset?
3 Answers Accenture, Quintiles, SAS,
what are the different ways of merging two datasets.name atleast 4.