formatting - SPSS: Replace missing values with date -
i have date field missing values. want replace missing values specified date. attempted recode variable assigning value missing didn't seem allow xx/xx/xxxx formatted inputs. attempted determine numeric value of date thinking recode field wanted wasn't successful either. i'm thinking compute if statement may possible i.e. if system-missing input date, again i'm @ loss on right commands. appreciated!
you can replace missing values specified date so:
if missing(datevar) datevar = date.mdy(12,20,1999). exe.
Comments
Post a Comment