BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
rnmishra
Calcite | Level 5

I am working on a project where I need to create a sas data set from a messy text file. The issue is, I need to skip certain lines from the body of  text file. If I had to skip rows at the top 'firstobs' will take care of that and for skipping the rows at bottom 'obs' will help. How about skipping say 68th through 70th row and 100 through 110th row?

Any  help /suggestion would be highly appreciated.

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

It depends a lot on the structure of the text file. Skipping specific lines could be as simple as

input var1 var2...;

if _n_ in (68:70, 100:110) then delete;

....

PG

PG

View solution in original post

3 REPLIES 3
Scott_Mitchell
Quartz | Level 8

Please provide a sample of the data you are working with so that we can help you.

PGStats
Opal | Level 21

It depends a lot on the structure of the text file. Skipping specific lines could be as simple as

input var1 var2...;

if _n_ in (68:70, 100:110) then delete;

....

PG

PG
rnmishra
Calcite | Level 5

Thanks PGStat. This is exactly what I want right now. However the 'Messy' text file that I have to handle right now has lot more issues. Will get back to you if my research fail to give a desired outcome.

Thanks again for the help!!!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1246 views
  • 0 likes
  • 3 in conversation