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 |
Are you involved in writing the inferential analysis plan? Tables specfications?
what are validation tools that are used in sas? : Sas-administrator
what is treatment emergent events and treatment emregent adverse event
What can you learn from the SAS log when debugging?
Explain the main difference between the sas procedures and functions? : Sas-administrator
There is a field containing a date. It needs to be displayed in the format “ddmonyy” if it’s before 1975,”dd mon ccyy” if it’s after 1985, and as ‘disco years’ if its between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT.
Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
How do you add a number to a macro variable?
What is difference between N and n????
Name statements that function at both compile and execution time?
explain about data integrator metadata reports? : Sas-di
How can I remove header from output data set?