What is the use of %include statement?
No Answer is Posted For this Question
Be the First to Post Answer
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?
What is the maximum and minimum length of macro variable
it will become easy if uuu provide website linkssss and list of consultanciessssss
Describe crosslist option in tables statement?
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 might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
how to import XTP files into SAS datasets?
1 Answers Barclays, Institute For Plasma Research,
what is broad cast agent? : Sas-bi
Can you execute macro within another macro? : sas-macro
how does sas handle missing values in procs? : Sas programming
how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too
data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?