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

Hi, I am trying to run a MACRO step to output multiple datasets based on the dates.  However, I can't seem to figure out how to mend the dates and create unique table names: 

 

%macro duo(rptmth);
proc sql;
create table P&rptmth as select * from dataset
where reportdate GE intnx('month',&rptmth.d,-12) and reportdate LT intnx('month',&rptmth.d,1)
quit;
%mend duo;
%duo('01Sep2015');
%duo('01May2015');

 

Thanks,

Jeff

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

If you were to include this statement as part of your program, you would immediately recognize that it won't work:

 

create table P'01Sep2015' as ...

 

That's all macro langauge is doing ... substituting text in order to generate the programming statements.  While you do require quotes for the date literals, you can't include them as part of the table names.  Instead, try calling the macro without quotes:

 

%duo (01Sep2015)

 

To make that work, you would have to add quotes for the date literals:

 

%macro duo(rptmth);
proc sql;
create table P&rptmth as select * from dataset
where reportdate GE intnx('month',"&rptmth."d,-12) and reportdate LT intnx('month',"&rptmth."d,1)
quit;
%mend duo;

 

Use double quotes, not single quotes, around macro variable references.  That's a requirement to permit macro language to resolve the values.

View solution in original post

2 REPLIES 2
Astounding
PROC Star

If you were to include this statement as part of your program, you would immediately recognize that it won't work:

 

create table P'01Sep2015' as ...

 

That's all macro langauge is doing ... substituting text in order to generate the programming statements.  While you do require quotes for the date literals, you can't include them as part of the table names.  Instead, try calling the macro without quotes:

 

%duo (01Sep2015)

 

To make that work, you would have to add quotes for the date literals:

 

%macro duo(rptmth);
proc sql;
create table P&rptmth as select * from dataset
where reportdate GE intnx('month',"&rptmth."d,-12) and reportdate LT intnx('month',"&rptmth."d,1)
quit;
%mend duo;

 

Use double quotes, not single quotes, around macro variable references.  That's a requirement to permit macro language to resolve the values.

jeffbezos
Calcite | Level 5
Thank you!

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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