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

I am trying the following:

 

%let year ='2019';
%put &year;

 

 

data cars_&year.;
set sashelp.cars;
run;

 

I have tried &&year.  and &year.  

 

I would like my new dataset to be cars_2019

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
SAS_ACE
Obsidian | Level 7

Removed the '      '    around 2019.

 

That fixed it.  

 

 

 

View solution in original post

2 REPLIES 2
SAS_ACE
Obsidian | Level 7

Removed the '      '    around 2019.

 

That fixed it.  

 

 

 

PaigeMiller
Diamond | Level 26

As a general rule, you should not put quotes or double quotes around the value of a macro variable. There are some rare exceptions, but as you see, this is not one of them.

--
Paige Miller

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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