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 |
in which companies SAS openings are there? List of companies using SAS technology.
How would you combine 3 or more tables with different structures?
Enlist the syntax rules followed in sas statements.
Write a SAS macro to calculate number of numbers in an email address
How you can read the variables that you need?
In ARRAY processing, what does the DIM function do?
Please, anyone, let me know the style or an example of using 'by='/'by' variable of a PDV(Program Data Vector)
3 Answers Verinon Technology Solutions,
hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?
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 it's between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT
What are the scrubbing procedures in sas?
what are scrubing procedures in SAS?
Write SAS codes to compare two datasets. Suppose the allowable difference is 0.1.