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;






sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

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
  • 1478 views
  • 0 likes
  • 4 in conversation