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

Hi!

I´m having a problem regarding naming conventions in SAS.

I working with a table that I have no control over and one columns identifier contains a hashtag (ID_XXX#).

To insert rows via 'proc sql', I have to omit the insert column listing because SAS can´t handle the # in the one column´s name.

Since omitting this list is bad practice and may crash my program if there are changes made to the table,

I´d like to find a way to handle the problem.

How to handle column names containing hashtags

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

You may need to learn about SASNAMES.  Using system option VALIDVARNAME=ANY you should be able to use the name.  When you reference it you will need to use name literal syntax 'name'N.  For example.

data _null_;
  
'(ID_XXX#)'n = 'Any name';
  
put _all_;
  
run;

View solution in original post

1 REPLY 1
data_null__
Jade | Level 19

You may need to learn about SASNAMES.  Using system option VALIDVARNAME=ANY you should be able to use the name.  When you reference it you will need to use name literal syntax 'name'N.  For example.

data _null_;
  
'(ID_XXX#)'n = 'Any name';
  
put _all_;
  
run;
What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1 reply
  • 2738 views
  • 1 like
  • 2 in conversation