Trying to import an excel file using the proc import, I have an issue concerning some columns headers containing underscore. In the resulting sas table created, the underscores in the column header have been replaced by blancs. For example, the colum header action_type_name in excel become the variable action type name with the label action type name.
See below the code I use (this is use in a macro):
PROC IMPORT OUT= &nom_table.
DATAFILE= "&chemin_import.\&fichier."
DBMS=EXCEL REPLACE;
RANGE="&nom_feuil.$";
GETNAMES=YES;
MIXED=NO;
SCANTEXT=YES;
USEDATE=YES;
SCANTIME=YES;
RUN;
What can I do to keep the underscore, to have exactly the name of the column header as name of variables in my resulting sas table. Thanks in advance for your help
Try:
options validvarname=v7;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.