LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (February 2009, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 10 Feb 2009 00:56:09 -0500
Reply-To:   Randy <randistan69@HOTMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Randy <randistan69@HOTMAIL.COM>
Subject:   Re: Reading in Multiple files

The code I am using to pull the files in is:

data test; Infile 'C:\abc.csv' DLM = ',' Lrecl = 32000 DSD Truncover; Input VarA VarB VarC Juldate; run;

/* After this I run some code on it. For example */ data test ; set test: n = _N_ ; run; /* and so forth */

Indeed, I can have one composite file of all the files that I have read in. All of the variables in all the files are the same. If I do a set I shall have to type in 1500 file names. Is there a short way to do this? Any help will be greatly appreciated.


Back to: Top of message | Previous page | Main SAS-L page