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 2002, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Sun, 27 Jan 2002 10:41:40 +0000
Reply-To:     dkb@CIX.COMPULINK.CO.UK
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         dkb@CIX.COMPULINK.CO.UK
Organization: Nextra UK
Subject:      Re: help me little problem

Dave <frsingles@ifrance.com> asks:

> > Hello, > > I am begining in sas and I would like do that. > Could you help me please. > > I try to explain my problem. > > I have 2 files and I would like fusion this 2 files > example. > > File 1 > > F1 F2 > A 1 > B 5 > E 3 > > File 2 > > F1 F2 > A 5 > A 1 > B 3 > E 3 > > > The result after funsion I want that > > F1 F2 > A 1 > B 5 > E 3 > A 5 > A 1 > B 3 > E 3 > > What proc I need to use could you give me a exemple please Dave,

All you need is this:

/* UNTESTED CODE */ Data newfile; set file1 file2; run;

Kind regards,

Dave

.


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