Hi,
I'm a new sas user and find it very interesting but just don't have the luck in finding answers on the help file.
My problem is that I'm trying to use UPDATE statement to update my dataset, but it also includes the other observations w/c i don't need in my new data.
Please see sample below:
mydata1 (has 1,000 obs)
mydata2 (has 3,000 obs)
data mynewdata;
update mydata1 mydata2 UPDATEMODE=NOMISSINGCHECK|MISSINGCHECK;
by acctno;
run;
w/c results to 3,000 obs
How can I filter out (remove) the other data?
Hoping for your suggestions. Thanks