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

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the sas data set? : sas-grid-administration

574


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1802


Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com

1584


What is the use of divide function?

602


What is the differnce between SDTM 3.1.2 to 3.1.1 version

4609






Can you suggest us materials for sdtm mapping?

4039


describe about physical data integration? : Sas-di

561


What system options would you use to help debug a macro? : sas-macro

640


What are SAS/ACCESS and SAS/CONNECT?

634


how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5

1659


How can sas program be validated?

578


what is the difference between unique key and primary key? : Sas-di

597


what is sas and what are the functions? : Sas-administrator

542


what is program data vector? : Sas-administrator

614


explain the difference between proc means and proc summary?

672