BookmarkSubscribeRSS Feed
arpi
Fluorite | Level 6

consider three files:

 

grade.txt

67 F 97 A 91
. M 62 F 67
35 F 77 C- 77
49 M 59 C 81

 

grade2.txt

21 M 80 B- 82
. F 90 A 93
35 M 87 B+ 85

 

grade3.txt

48 F . . 76
59 F 95 A+ 97
15 M 88 . 93

 

data combined;
infile "C:\Users\sachin\Desktop\SAS\DataSet\Learning\grades?.txt" truncover;
input age 1-2
gender $ 3-4
Mark1 5-7
Grade $ 8-10
Mark2 11-13
;
run;

This can be easily done using wildcard character (?).

 

I hope this helps!!!

rvsidhu035
Quartz | Level 8
filename fn pipe 'dir h:\temp\*.txt /s /b';
What is mean /s /b here

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 16 replies
  • 12106 views
  • 5 likes
  • 8 in conversation