When I import the file the date fields are formatted as strings. If I
try to change this to date all the data disappears. Obviously, I'm doing
something wrong...
Thanks for any help.
Phil
"Philip Feeley" <phi...@interchange.ubc.ca> wrote in message
news:bf6q9n$tc$1...@nntp.itservices.ubc.ca...
This won't likely help for your present situation. But in
future, you might want to ask the folks you're working with
to enter dates as 3 numeric variables in separate columns
(Day, Month, and Year). This makes importing into SPSS
problem-free, and you can easily convert the 3 numeric
variables to a DATE variable in SPSS, like this:
compute datevar = date.dmy(day,month,year).
exe.
Cheers,
Bruce
--
Bruce Weaver
wea...@mcmaster.ca
www.angelfire.com/wv/bwhomedir/
which should get you the date you want, in the format of dd-mmm-yyyy.
Bruce Weaver <wea...@mcmaster.ca> wrote in message news:<bf74or$2ps$1...@informer1.cis.mcmaster.ca>...