I am trying to import a .csv file which has the following format (first two observations)
PayeeID,Name,AreaID,RegionID,DistrictID,TerritoryID,TMRole,TMType,StartDate,EndDate
“0000100181”,"name",company name,30,321,3176,TM,TM,2018-01-01,2018-02-04
I use the following code to import:
proc import datafile = "C:\Users\conno\OneDrive\Desktop\DS 7900 - Data Science XLS Group\TEST.csv"
out = ds7900.data
DBMS = csv
replace;
run;
and the first column has some strange question mark symbols. For example, when printed to the results viewer:
Obs PayeeID12
I want to remove these. Please help!