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

This is simple...but I'm stumped. I have:

 

data ESRA.&month_label._&year_want; set ESRA.CURRENTMONTH; run;

 

This makes a dataset called MARCH_2019

 

I would like MARCH 2019  (note the no underscore). I have tried a bunch of different ways but I know the marco references can be a bit strange when spaces are concerned.

 

Thanks

 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Don't do that.  You can put the space in the label.

data ESRA.&month_label._&year_want (label="&month_label. &year_want"); 
  set ESRA.CURRENTMONTH; 
run;

If you really want to then you will need to use a name literal.

options validmemname=extend;
data ESRA."&month_label. &year_want"n (label="&month_label. &year_want"); 
  set ESRA.CURRENTMONTH; 
run;

View solution in original post

4 REPLIES 4
Astounding
PROC Star
Nothing to do with macro language.

Data set names are not allowed to contain a blank.
Tom
Super User Tom
Super User

Don't do that.  You can put the space in the label.

data ESRA.&month_label._&year_want (label="&month_label. &year_want"); 
  set ESRA.CURRENTMONTH; 
run;

If you really want to then you will need to use a name literal.

options validmemname=extend;
data ESRA."&month_label. &year_want"n (label="&month_label. &year_want"); 
  set ESRA.CURRENTMONTH; 
run;
BCNAV
Quartz | Level 8

thanks all....I had forgotten about the space....I was asked to see if it could be done.  Cheers!

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
  • 4 replies
  • 1207 views
  • 1 like
  • 4 in conversation