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

Answer Posted / mr.b

Data sample_accounts;
INFILE "C:\Mydata\sample_accounts.txt";
INPUT Account 1-7 OpenDate $ 9-17 StatusCode $ 21-22
CreditLimit 25-29;
RUN;
tis will be as i know.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do the sas log messages “numeric values have been converted to character” mean? What are the implications?

955


Mention sas system options to debug sas macros.

912


What is the role of sas grid administrator? : sas-grid-administration

1057


Give some examples where proc report’s defaults are different than proc print’s defaults?

816


Mention few capabilities of sas framework.

922


How sas treats the dsd delimiters?

950


For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration

737


Explain what is SAS informats?

829


Give some examples where proc report’s defaults are same as proc print’s defaults?

888


what can you learn from the sas log when debugging? : Sas programming

837


what are some differences between proc summary and proc means? : Sas programming

759


Explain the difference between using drop = data set option in set and data statement?

922


what is factor analysis? : Sas-administrator

816


what is the one statement to set the criteria of data that can be coded in any step? : Sas programming

904


If you were told to create many records from one record, show how you would do this using array and with proc transpose?

1158