You are given a text file company.txt where dollar signs were used as delimiters. To indicate missing values, two dollars signs were entered. Values in this file represent last name, employee number, and annual salary. Using this data file as input, create a SAS data set called Company with the variables LastName (character), EmpNo (character), and Salary (numeric).
I ran this program, in the log there is error while reading one of the records.
Code I used:
data Company; infile "~/company.txt" dlm = '$'; input LastName $ EmpNo $ Salary; run;
Can anyone help me out with how I can read that record?
... View more