Hi All, I am converting an excel file to SAS dataset using xlxp2sas. The reason I am using xlxp2sas is: My excel file has columns with text more then 250 characters and I am using UNIX(9.2) system, and the sheet name has special characters, and the header names has special characters ..phew!! the excel libname statement doesnt work on UNIX, and Proc import causes truncation. In short, I have to use xlxp2sas. Nowwhen I use it on test file(with 1 row, 1 column), even throws error "ERROR: Expected an XML document prolog or element.", even on test file. I am using the attached map file. Do anyone has any idea to resolve this pesky error??? My code is : %xlxp2sas(excelfile=./test.xls, mapfile=./excelxp.map);
... View more