Date: Fri, 6 Feb 2009 09:04:35 -0500
Reply-To: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject: Re: can u tellme using sort procedure how to split non-missing
and missing datasets given below
it is of no use that you repeat exactly the same question without reading
the answer!
On Fri, 6 Feb 2009 08:53:19 -0500, Shaik Hymad <hymadsk@GMAIL.COM> wrote:
>I have a dataset like SAMPLE
>
>id name marks
>11 A 89
>13 C 99
>21 B .
>42 D .
>15 E 90
>64 F .
>71 G 73
>87 H .
>9 I 76
>10 j .
>
>USING PROC SORT PROCEDURE,
>I need to SPILT INTO TWO DATASETS LIKE,
>ONE IS NON- MISSING VALUES AND ANOTHER ONE IS MISSING VALUES IN A SORTING
>ORDER
>
>id name marks id name marks
> 9 I 76 10 J .
>
>11 A 89 21 B .
>
>13 C 99 42 D .
>
>15 E 90 64 F .
>
>71 G 73 87 H .
>
>
>
>CAN U PLS HELP ME
|