SAS Enterprise Guide

Desktop productivity for business analysts and programmers
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-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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