how can u import .csv file in to SAS?tell Syntax?
Answer Posted / dupe bassey
You can also use an
ods html file ='c:\user\new.xls';
proc print data=new;
run;
ods html close;
something along those lines
| Is This Answer Correct ? | 1 Yes | 19 No |
Post New Answer View All Answers
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
Differentiate between ceil and floor functions.
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
What are types of transport files?
Define run-group processing?
List out some key concept of SAS
What is run-group processing?
What are the parameters of scan function?
What will calendar procedure do?
How would you determine the number of missing or nonmissing values in computations?
How do you debug and test your SAS programs?
Explain how merging helps to combine data sets.
what is the effect of the options statement errors=1? : Sas programming
What is the purpose of _character_ and _numeric_?
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro