How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
No Answer is Posted For this Question
Be the First to Post Answer
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
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
Name few SAS functions?
What are all the problems you faced while validating tables and reports?
0 Answers Accenture, Quintiles,
What is the order of evaluation of the comparison && logical && relational operators:?
why is sas considered self-documenting? : Sas programming
What is Transaction...? And what are Comment, Roll back n Save point..?
describe about physical data integration? : Sas-di
Explain what is the use of proc gplot?
How would you delete duplicate observations?
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
how can u extract,transform and loading?