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 (January 2000, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 10 Jan 2000 13:46:58 -0500
Reply-To:     dward@sashelp.com
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         dward <dward@SASHELP.COM>
Subject:      Re: Is there a JFCB-like option in PC SAS to determine specific
              filename referenced by wildcards?
Content-Type: text/plain; charset=us-ascii

>In MVS SAS one can use the JFCB= option to determine what specific DDNAME a >particular observation comes from when multiple files are being read in at >once. Is there a way to do this in PC SAS (SAS 6.12 for Windows?)

I think this is what you are looking for:

data _null_; length x $200; infile 'c:\temp\*.txt' filename=x; input; put x _infile_; run;

-- -------------------------------------- David L. Ward, Senior Software Developer DZS Software Solutions, Inc. Bound Brook, NJ SAS Related: dward@sashelp.com Work Related: dward@dzs.com -------------------------------------- --


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