Hi Team We have recently migrated from SAS EG 4.1 to SAS EG 7.1. In the older version (4.1), we have used PROC IMPORT to import a CSV file.While importing, if any variable had spaces, then the spaces would be replaced by _. For Eg: Account Number would be replaced by Account_Number. In the Newer version (7.1), the same code is importing the variable name with spaces. Eg: Account Number and it is NOT replacing spaces with _. I have tried options validvarname=V7; but it isn't working. Please advice. I am using the below code: options validvarname=v7; proc import datafile="TT3.csv" out=HPI dbms=CSV; run; proc contents data= HPI; run; Thanks Rajesh
... View more