I appreciate the feedback from all. I introduce the DOB format in the input and run the code. it worked fine, no error: data financial; infile 'V:\Examples\learning\Bank.txt'; input subj $ 1 - 3 @4 DOB mmddyy10. Gender $ 14 Balance 15 -21; run; proc print data=Financial; format DOB mmddyy10. Balance dollar11.2; run; this worked.
... View more