Hi,
I'm a novice. Can anyone advise me why the quotes were not striped when using dsd option?
thanks
data test;
infile datalines dsd;
input Gender $ N1 N2 N3;
datalines;
"M",50,68,155
"F",23,60,101
"M",65,72,220
"F",35,65,133
"M",15,71,166
;
run;
proc print data=test;
run;