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 (September 2004, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 29 Sep 2004 16:56:37 -0400
Reply-To:     Howard Schreier <Howard_Schreier@ITA.DOC.GOV>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Howard Schreier <Howard_Schreier@ITA.DOC.GOV>
Subject:      Re: Concatenate dataset

Try something like:

filename concat ('c:\temp\one','c:\temp\two');

Sometimes you can get by with an implicit technique, using wildcards:

filename concat 'c:\temp\*';

On Mon, 27 Sep 2004 16:51:27 -0500, Mai To <Mai.To@UTH.TMC.EDU> wrote:

>I have two datasets, they have the same number of fields, same field >name etc.... One have information from Jan - August, and one from Sept >to December. > >I must keep these datasets separate, therefore, I can't just cut/paste >to combine them in one Excel worksheet. > >When I was using mainframe SAS, these are the codes I had to use to >combine them. How can I do it in SAS Windows. I'm using SAS 8.02 and >Windows XP Professional. Thanks very much for your help. > >Mia > > >//SAS EXEC SAS,WORK='250,50' >//* >//LEDG DD DSN=AMXT.FY00.YTDLED,DISP=SHR >// DD DSN=AMXT.FY01.YTDLED,DISP=SHR >// DD DSN=AMXT.FY02.YTDLED,DISP=SHR >//ORGN DD DSN=AMXT.ORGN03.EXTR,DISP=SHR


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