BookmarkSubscribeRSS Feed
jdmarino
Fluorite | Level 6

I have a CSV file with 95 columns and I need about 20 of them.  The way I handled this is to have 65 dummy vars (dummy0-dummy64) that are strings, 20 fields (the ones I care about) that are named/informatted and a giant INPUT statement that uses them to read the rows. The last thing I do in my data step is drop dummy0-dummy64.

Is there a better way to do this?  My input statement is kind of ugly.

2 REPLIES 2
data_null__
Jade | Level 19

You don't need but one dummy variable you can use something link INPUT a b c 64*(d) e f g; where d is a one byte character to skip the fields.

I have a program that does something similar in that it reads specific fields from CSVs.  You define a data set with the variables your want to read properly typed and with INFORMATs attached then you call the program and it read the fields that match the variable names from the each CSV.  It will read also from concatenated or wildcard FILEREF.  The fields can be in any order the program just looks for the names.

It's an interesting application of HASH and ARRAY. 

jdmarino
Fluorite | Level 6

That macro is really nifty; I'll give it a try next time.  One of my colleagues solved the same problem using awk. He ends up with single, rational, delimited file which he can then import simple.  Neither he nor I have your SAS skills.

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
  • 2 replies
  • 7499 views
  • 7 likes
  • 2 in conversation