How would you compile all macros from a folder in a study, within the autoexec program?
Answer / sumanth
Using options sasautos = (sasautos,"&_macros") after a libname statement
| Is This Answer Correct ? | 1 Yes | 2 No |
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
How will you generate test data with no input data?
Differentiate between proc means and proc summary.
what is Global Symbol table and Local symbol table?
what are the component of range? : Sas-bi
what are the new features included in the new version of SAS i.e., SAS9.1.3?
5 Answers College School Exams Tests, Wockhardt,
what does .. meant in sas macros
how could you generate test data with no input data? : Sas programming
What is the use of the %include statement?
How do handle working under pressure?
Hi, If anyone has base SAS certification dumps, please share.
what is information maps?