I have a .xls excel file (Microsoft Excel 97-2003 Worksheet) which I want to import to SAS. So I used:
proc import datafile = "C:\Users\***\***\data.xls"
out = data dbms = EXCEL;
run;
However I get a following error:
ERROR: DBMS type EXCEL not valid for import.
I have tried different DBMS (I do not really get the difference in many cases, but just took a guess with EXCEL97, EXCEL4, EXCEL5, XLS). None of these worked. Do you have any idea how to deal with that?
The few first columns look like below:
id status start end duration browser browserversion country Age
51 complete 03/08/2016 03/08/2016 0:21:57 Chrome 65.0 1 51
133 complete 03/08/2016 03/08/2016 0:10:07 Chrome 58.0 1 18
1002 complete 03/08/2016 03/08/2016 0:17:57 Chrome 58.0 1 40
proc setinit; run;