I need help in merging two different datasets. I am merging
by date and I want to propagate observations from one
dataset to the corresponding dates. One dataset has a
unique date for each day of the month, while the other
dataset has same date for different patient visits. For
example I want to spread an observation on the 31DEC2008
from one dataset to several observations with the same date
on a second dataset for all the patients who visited on
that date. I have tried to merge the two and the result is
not what I wanted. Instead I get a dataset whereby all the
dates have missing values where observations from the first
datset should have spread.
Answer / kumaraswamy maduri
data new;
date1="31Dec2008"d;
run;
data new1;
input date1 date9. subj;
cards;
31dec2008 1
30dec2008 1
30dec2008 2
31dec2008 2
;
run;
proc sort;by date1;run;
data comp;
merge new(in=x) new1;
by date1;
if x;
run;
I have used the above code. I got perfect results.
Please correct me if I misunderstood your question.
| Is This Answer Correct ? | 6 Yes | 0 No |
how do we mail reports from SAS environment to our team leader
Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT SAS Training in Data Management at InfoSchool Bangalore
what are different analysis datasets you created and what are the new variables created
Did you used proc test? when?
0 Answers Accenture, Quintiles,
for whom is sas data integration studio designed? : Sas-di
How to display duplicate observations in data?
Are you familiar with special input delimiters How are they used?
What is the difference between an informat and a format. Name three informats or formats.
How do you write a test plan?
What is the purpose of the trailing and How would you use them?
what is fact table and factless table?
what are all the default values getting in PROC MEANS...???