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 / nandu
data test ;
infile "Path";
input var1 var2 var3 ;
file print 'path';
put @1 var1 @10 var2 ;
run;
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What are the table names in oracle database...?
What would be the value of month at the end of data step execution and how many observations would be there?
How to create an external dataset with sas code?
Mention common programming errors committed in sas ?
What is the difference between where and if statement?
What are the difference between sas functions and procedures?
What is the difference between %local and %global? : sas-macro
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
What are common programming errors committed in sas
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
what is the basic structure sas administrator? : Sas-administrator
What is the difference between reading data from an external file and reading data from an existing data set?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
Describe the function and untility of the most difficult SAS macro that you have written.
What does the RUN statement do?