javascript
Brief description  about Online courses   join in Online courses
View Gururaj  Karan 's Profile

Can any one help me please !!

When reading a NON SAS external file what is the best way of reading the file?
Asked by Gururaj Karan | Dec 29, 2010 |  Reply now
Replies (3)
View srikant singh 's Profile
Use Proc Import: for example if you are importing an excel file you can follow these steps.

Proc Import Out=datasetname
Datafile="file location"
DBMS= EXCEL Replace
Sheet= "sheet name"; Getnames="yes"; run;
Jan 6, 2011
View gururaj karan 's Profile
Ok Thank you.
Dec 29, 2010
View devaiah divya 's Profile
Use the INPUT statement with pointer control - ex: INPUT @1 dateextr mmddyy8. etc.
Dec 29, 2010