BookmarkSubscribeRSS Feed
reone
Calcite | Level 5
Hi to all,

I have need to define a data set with name of more macro variables:
the name of data set is type: area_yyyy_mm:

%let mese = 5;
%let area = C;
%let anno = 1996;

data &AREA_&ANNO_&MESE;
set risultato7_1;
run;

these istructions not work, have you some alternative solution?
tahnks
2 REPLIES 2
DataShare
SAS Employee
data &AREA._&ANNO._&MESE.;
set risultato7_1;
run;
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Suggested Google advanced search argument, this topic / post for consideration:

using macro variables site:sas.com


Scott Barry
SBBWorks, Inc.

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