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
.
|