Hello Everybody,
I am importing huge file ( so many columns) and run below query.
PROC IMPORT OUT=WORK.test DATAFILE="~\data.XLS"
DBMS=XLS REPLACE;
SHEET="Sheet1";
GETNAMES=YES;
RUN;
I found that my column names has spaces in final sas dataset also. For example 'var one' came as 'var one' but I was expecting it will come as var_one. I am wondering if there is a way to make sure that all variables are named as SAS convention as we create tables using file from Excel.
I know I can do it using file>>import data and clicking in rename variables as sas convention in EG but I am looking if it can be done using proc import procedure.
Thank you
1. Are you sure that's what's happening? SAS has variable labels and names, the labels may have spaces but the names won't.
2. Look at the validvarname option.
option validvarname=ANY - this allows spaces
OPTION VALIDVARNAME=V7 - will allow the standard SAS naming convention, i.e. using underscores.
Change the option in EG if you require and re-importing will allow the names to be imported as you expect.
1. Are you sure that's what's happening? SAS has variable labels and names, the labels may have spaces but the names won't.
2. Look at the validvarname option.
option validvarname=ANY - this allows spaces
OPTION VALIDVARNAME=V7 - will allow the standard SAS naming convention, i.e. using underscores.
Change the option in EG if you require and re-importing will allow the names to be imported as you expect.
Thank you @reeza. It worked.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.