BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
cc_next
Calcite | Level 5

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 

1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
Ksharp
Super User

Try:

 

options validvarname=v7;

cc_next
Calcite | Level 5
Perfect, thank you very much

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 2413 views
  • 0 likes
  • 2 in conversation