BookmarkSubscribeRSS Feed
Pooja98
Fluorite | Level 6

I have 20 csv files, need to import and append the 20 CSV files in SAS using DO loop.

The file name as follow:

Part-00000-sample file- set 12589

Part-00001-sample file- set 12590

Part-00002-sample file- set 12591

Part-00003-sample file- set 12592

etc....

 

i need to import the 20csv files using do loop. As for importing need a double loop, need a help for this?

 

TIA

3 REPLIES 3
ChrisHemedinger
Community Manager

Are the files in one directory and named similar enough for a wildcard? See this article for an example.

 

This example is for tab-delimited.

 

data accel;
  infile "/home/my-id/tsv/*.tsv" 
   dlm='09'x;
  length counter 8 
         timestamp 8 
         x 8 y 8 z 8 
         filename $ 25;
  input counter timestamp x y z filename;
run;

 

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 1309 views
  • 1 like
  • 4 in conversation