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 |
what is sas metadata server? : Sas-di
/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance
wat is sas? is a package or programming language?
What is run-group processing?
Under what circumstances would you code a SELECT construct instead of IF statements?
Name any two sas spawners? : sas-grid-administration
how can you code the confidence intervals?
6 Answers Cytel, IIT, Ranbaxy,
1.How to draw pivot tables in Excel by using SAS and in which version we can use VB script for to draw pivot tables in Excel? Answer with example data. 2.What are the advantages of _NULL_ in Data steps? Can we use _NULL_ in Proc steps also? 3. How to call the macro variable into Data Steps? 4. Can we draw pivot tables in Excel using Proc SQL? Please post answers for the above questions with suitable examples, and how to use VB script for Excel using SAS.
where to use sas business intelligence? : Sas-bi
In sas admin differentiate between roles and capabilities? : sas-grid-administration
How to save the log information in a file for future use
What are the advantages of using sas?