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

All, 
  This is probably a simple way to achieve what I want but I don't know how to do this. 

  I am importing some data from a csv file using the following code: 

 

	proc import datafile=csv out=System dbms=csv replace; 
/* 		getnames=yes; */   *since imported names have parantheses or special characters;
	run;
	

  As shown in the commented code, I have tried commenting the options of getnames out and tried it with the code turned on. Either ways the imported data set has variables that are not being recognized with the rename option. 

 

 

  When attempting to rename : 

  

data Test1; 
	set Work.System(rename = System Power Output(W) = SystemPowOutInW); 
Run; 

 

 

ERROR 79-322: Expecting a =.
 
ERROR 22-7: Invalid option name =.
 
 When attempting to make subset of dataset 
data Test1; 
	set Work.System(keep = System Power Output(W) = SystemPowOutInW); 
Run; 
ERROR 214-322: Variable name ( is not valid.
ERROR 23-7: Invalid value for the KEEP option.
 
Is there a way to make the column names SAS compliant when importing them from the CSV or can someone demonstrate an example of renaming column names with parantheses and special characters ? 
1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Set the following option and rerun your import code. 

Options validvarname=V7;

SAS should automatically convert the names into cleaner names. 

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star

When column names are imported that do not conform to the SAS standard then you can rename them like this:

 

data Test1; 
	set Work.System(rename = ('System Power Output(W)'n = SystemPowOutInW)); 
Run; 
Reeza
Super User

Set the following option and rerun your import code. 

Options validvarname=V7;

SAS should automatically convert the names into cleaner names. 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 4931 views
  • 7 likes
  • 3 in conversation