I have a csv with date and time combined in the following format mm/dd/yyyy hh:mm:ss. I want to import this file into SAS and get it into a format SAS can recognize so I can do some manipulation based on date. My the closest I can get is this:
informat timecolumn DATETIME;
or this
informat timecolumn MMDDYY10.;
But neither seem to give me the whole date and time combined.
any tips?
informat timecolumn DATETIME;
or this
informat timecolumn MMDDYY10.;
But neither seem to give me the whole date and time combined.
any tips?