How the Excel file enter into the SAS environment without
Code of Infile & Import procs,if i have no file Conversion?

Answers were Sorted based on User's Feedback



How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i h..

Answer / raghava pamulapati

by using pass through facility in sql we can read directly
with out conversion

Is This Answer Correct ?    11 Yes 0 No

How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i h..

Answer / ram

libname libref path='ram.xls';

Is This Answer Correct ?    2 Yes 0 No

How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i h..

Answer / ram

proc Import datafile='file path\ram.xls out=output
dbms=excel replace;
sheet='sheet$4;
run;

Is This Answer Correct ?    2 Yes 4 No

Post New Answer

More SAS Interview Questions

What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;

3 Answers  


What are the functions used for character handling?

0 Answers  


How can sas program be validated?

0 Answers  


what is broad cast agent? : Sas-bi

0 Answers  


How experienced are you with customized reporting and use of Data _Null_ features?

4 Answers   Oracle,






How do I CREATE an external dataset with sas code? I would like to create within a sascode a non-exsistent textfile on the host. So I am not forced to create the file befor filling it.

2 Answers  


Difference between sum function and using “+” operator?

0 Answers  


What commands are used in the case of including or excluding any specific variables in the data set?

0 Answers  


what are several options for creating reports in web report studio? : Sas-bi

0 Answers  


What is the pound sign used for in the data_null_ ?

1 Answers  


Hi, I have one dataset, could you please ans for this. id amount paid_amount 1 700 400 2 900 250 3 300 300 a 400 250 b 500 320 c 800 650 x 200 190 y 900 250 z 300 180 i want create new dataset having id and paid_amount who are paid high amount comparing amount. ex: 1d paid_amount 3 300 c 650 x 190

3 Answers  


How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set.

10 Answers   Accenture,


Categories