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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -