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?
Answer Posted / prakhar sadafal
Use the _infile_ option in the put statement
view sourceprint?
filename some 'c:cool.dat';
filename cool1 'c:cool1.dat';
data _null_;
infile some;
input some;
file cool1;
put _infile_;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Hi, If anyone has base SAS certification dumps, please share.
Of all your work, where have you been the most successful?
How you can read the variables that you need?
what are some good sas programming practices for processing very large data sets? : Sas programming
What is the difference between one to one merge and match merge? Give an example.
What versions of SAS have you used (on which platforms)?
Describe the function and untility of the most difficult SAS macro that you have written.
how many types of prompts are there? : Sas-bi
Do you need to rearrange the order of the data for the report?
Explain input and put function?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
What is the work of tranwrd function?
How will you use the WHO Drug Dictionary for Reporting Clinical Trials?
Explain the use of proc gplot? : sas-grid-administration
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming