HI everyone..
I have a dataset baseline with variables which I merge with other dosing dataset
by subject.
how can i define new baseline variables in new dataset?
basline dataset has variables subject , hdl,ldl,sampdate,trig.
dosing dataset has variables subject,dosedate.
first i did the sorting .
then mergeing.
data new;
merge baseline dosing;
by subject;
i want this new dataset to have variables like..
b_hdl,b_ldl,b_trig.
how do i do that.
the system says the variables are not referenced.if i use keep.
please help.
thanx in advance
april.