how to generate report for 0 observation dataset?
Answers were Sorted based on User's Feedback
Answer / gaurav sharma
You can generate such report by using 'Like' Clause in Proc SQL.
This will create a dataset of structure similar to one you will ask for, but with zero observations.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / suman pinnika
data _null_;
input name$ age sex$;
delete;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sakthi
data Employ;
length Eid 4 des $15 salary 7;
delete;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
wat has been most common programming mistake?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
What is Transaction...? And what are Comment, Roll back n Save point..?
What is the maximum and minimum length of macro variable
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
if reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record
what is data access? : Sas-di
Have you ever used the SAS Debugger?
What are symbol tables?Differemce between Local N Global Symbol tables.....
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
Which is the best place to learn SAS clinicals and Oracle clinical in hyderabad?
Hi , which book should i refer to for preaparing SAS statistical Exam. Searched a lot on books but still did n't find relevant books