How to get any kind of data in SAS? Is it possible to take
data from notepad in SAS?
Answer Posted / krishna
In base sas
we can data from external data by
data <datasetname>;
infile 'path\file.txt';
run;
by procedure
proc import datafile='path\file.xls' out=<datasetname>
dbms=excel;
sheet='sheetname';
run;
proc import table=tablename out=<datasetname>
dbms=access;
database='path\file.mdb';
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between class statement and by statement in proc means?
What is the difference between match merge and one to one merge?
What is by-group processing?
Name some categories in sas 9? : sas-grid-administration
What would be the value of month at the end of data step execution and how many observations would be there?
Have you used macros? For what purpose you have used? : sas-macro
What is the SAS data set?
What are the differences between proc means and proc summary?
what is sas data set?
do you need to know if there are any missing values? : Sas programming
what are the component of range? : Sas-bi
How to limit decimal places for the variable using proc means?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
How does the internal authentication work in sas? : sas-grid-administration
What do the SAS log messages "numeric values have been converted to character" mean?