How to read multiple excel sheets from a single excel file
at once????
Answer Posted / paul
we can read by a simple libname access method:
eg:
libname exlbook 'd:\excel file location\file name.xls';
proc copy in=exlbook out=work;
run;
/*here i am coying the entire excel workbook to work library
in sas, so we can get all sheets at a time.
if we use proc import we can import a single sheet at a time
By the above method we can dump all table from a MS-access database or oracle database or any other db.
only we have to change the connection details, i.e.,
excel --> file name with path
access --> db name with path
oracle/any other RDBMS --> user=***, password=****,
path=**** or host=****
another advantage of this method is :
the library will not occupy any memory on hard disc
it only acts as a repository which save memory and
processing time */
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
how many types of prompts are there? : Sas-bi
what is the difference between infile and input? : Sas-administrator
What is run-group processing?
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
How to include or exclude specific variables in a data set?
How do you add a number to a macro variable? : sas-macro
Differentiate between ceil and floor functions.
What is the difference between order and group variable in proc report?
what is sas application server? : Sas-di
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
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
What is the purpose of _character_ and _numeric_?
Difference between informat and format?
How would you identify a macro variable?
Give e an example of..