Hi, I'm trying to write a code that will calculate ages of all members of a family (MEM1 to MEM7) from their dob. My data looks like this FAMILY MEM1 MEM2 MEM3 MEM4 MEM5 MEM6 MEM7 001 2/1/1941 9/1/2000 2/1/2004 . . . . 002 6/1/1989 . . . . . . 003 8/1/1963 8/1/1963 . . . . . 004 9/1/1994 6/1/2000 . . . . . When I run the following code, it says MEMi variable is uninitialized. Please help. data a; set b ; array age {7} age1-age7; array age_mem {7} age_mem1-age_mem7; do i=1 to 7; age(i)=floor( (intck('month', MEM(i), '01jan2013'd) -(day('01jan2013'd) < day(MEM(i))))/12); age_mem(i)= age(i)-(floor( (intck('month', MEM(i), '01jan2013'd) -(day('01jan2013'd) < min(day(MEM(i)), day(intnx('month','01jan2013'd,1) -1)))/12))); output; end; run; Thanks!
... View more