How to get any kind of data in SAS? Is it possible to take
data from notepad in SAS?

Answer Posted / nsb

Yes, we can read the data from notepad just like reading
data from from any other file formats by using INFILE
statement.

infile "...\....\xyz.txt";

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Mention few capabilities of sas framework.

914


How do dates work in sas?

845


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.

2013


how will you locate the sas platform applications? : Sas-bi

778


What is the differnce between SDTM 3.1.2 to 3.1.1 version

4828


What is the maximum and minimum length of macro variable

905


Compare sas with other data analytics tools.

784


For what purpose would you use the RETAIN statement?

1253


what is SAS OPTIMIZATION?

2029


What do you code to create a macro? : sas-macro

796


explain the key concept of sas? : Sas-administrator

742


What is data _null_?

886


what is PhaseIII, ODS, TLG, Macro and Proc in SAS

4122


what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming

872


What are the differences between proc means and proc summary?

797