what is the usage for assigning error=1 in a dataset ?
Answers were Sorted based on User's Feedback
Answer / poonam
it means only one error of that type will be printed.
| Is This Answer Correct ? | 2 Yes | 5 No |
What is program data vector (pdv)?
i want to upload titles and footnotes to excel file?how it is possible?
How can you limit the variables written to output dataset in data step?
/* To determine the maximum and minimum of V1 */ data before3; input v1 v2 v3; cards; 3 2 1 4 6 5 2 1 3 6 5 4 1 3 2 5 4 6 ; run;
when we are using the PROC TRANSPOSE? OBSERVATIONS are repeated then what will happen and what it will show in log window.
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
what is the difference between infile and input? : Sas-administrator
Give some examples where proc report’s defaults are different than proc print’s defaults?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
What are the scrubbing procedures in sas?
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here
what is TAB delimiter? explain about it? what will you do to get TAB delimiter?