I'm reading in an MS Access file: libname enrsum access path='\\warehouse\freezes_official_2010.accdb'; Doing some processing on other fields, then writing the data to a file: ods listing close; ods csv file="t:\201910Tday15.csv" style=minimal; Using a proc print statement: proc print data=work.RECODE; var PERSON_UID ACADEMIC_PERIOD FREEZE_EVENT; run; The format of the freeze_event from the Access file is 201910TDAY15. When the proc print puts it in a file, it adds question marks and looks like 201910?T?DAY15. Why is it doing this and how do I fix it? Thanks.
... View more