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
what do you mean by data staging area? : Sas-di
What are the new features included in the new version of SAS Programming Language?
Explain how you can debug and test your SAS program?
What is the order of application for output data set options, input data set options and SAS statements?
explain the key concept of sas? : Sas-administrator
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.
what are the component of range? : Sas-bi
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
how many types of prompts are there? : Sas-bi
For what purposes have you used sas macros? : sas-macro
List down the reasons for choosing sas over other data analytics tools.
explain what is factor analysis? : Sas-administrator
I need level 2 to 5 sas using companies in india
How long can a macro variable be? A token? : sas-macro
What are the parameters of scan function?