BookmarkSubscribeRSS Feed
vinavani
Calcite | Level 5

Quite often I do not want to place file on server and want to place data for analysis as data lines in program only. If I copy paste data from excel or text file. it does not read the data. What needs to be done?

3 REPLIES 3
art297
Opal | Level 21

Not sure if you posted your question in the right forum.  Have you tried to do it using a data step?  If so, it would help if you posted the code you tried.

Reeza
Super User

I don't think this is the right area either, and you also need to provide more information.

Do you have SAS installed on your desktop, or are you only using SAS on demand.

If you have it on your desktop and have EG, try the following:

http://blogs.sas.com/content/sasdummy/2013/01/21/turn-your-data-set-into-a-data-step-program/

Mit
Calcite | Level 5 Mit
Calcite | Level 5

Do you like this?


* variable names copied from Excel but typed a $ after each character variable;
* data lines copied from Excel file;

Data have;
input name $ age  height weight gender $;
datalines;
A 20 158 50 F
B 25 175 70 M
C  30 170 65 F
D 35 185 95 M
;
run;






hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1561 views
  • 0 likes
  • 4 in conversation