Hi, I have a file named "list2.txt"
And would like to read it into SAS.
However, I don't understand why the gender for Mary Wong and the Profit for John Leung cannot be read successfully.
May anyone pls explain it to me?
Many thanks!!!
My code:
data case5b;
infile '~/MS3251_2022/Raw Data/list2.txt' missover;
input age 1-3 name $ 5-19 profit 20-29 sex $ 31-33;
run;
(list2.txt and output)
... View more