Kindly check below code data PKMERGE;
set PKDAR;
/*Derivation of age*/
age=intck('year',VSN1D, DOB1D, 'Continuous'); /*Check the age*/
run; After running the above code, following log is appearing NOTE: Character values have been converted to numeric
values at the places given by: (Line):(Column).
732:18 732:25
NOTE: Invalid numeric data, VSN1D='18APR2006' , at line 732
column 18.
NOTE: Invalid numeric data, DOB1D='08JUL1955' , at line 732
column 25. Kindly assist in solving the problem
... View more