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.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

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