LENGTH SSN $11
GenderCd /* by not supplying anything here, gendercd will be defined as $1, along with ethcd */
EthCd $1
RaceCd $1
EthRaceCd $3;
... View more
Hello, If they are simply just empty rows and you know the range that you want to remove, try this: DATA WORK.Want; SET WORK.Have; IF _N_ IN (row#:row#) THEN DELETE; RUN;
... View more
Hello! Try using an assignment statement to concatenate the date variables into a singular numeric variable. DATA WORK.Want; SET WORK.Have; BirthDt = MDY(BirthMonth, BirthDay, BirthYear); RUN; I hope this was helpful! - A.G.
... View more