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

 

I am trying to subset my dataset based on months, and I want it to loop through the months and create a different dataset for each month.

This is my code:

%macro SASPLay;

%let start = 30JUN2014;

%do i=0 %to 10;

    data _null_;

  call symputx("mth",put(intnx("MONTHS",input("&start",Date9.),&i,'SAME'),Date9.));

     run;

  %put &mth;

 

    data final_&mth;

    set mockdata;

  where DATE = '&mth'd;

run;

%end;

%mend;

 

%SASPlay;

 

It gives these error messages:

ERROR: Invalid date/time/datetime constant '&mth'd.

ERROR: Syntax error while parsing WHERE clause.

 

 

I am trying to generalise this, because when I use a hardcoded value (e.g.  where DATE = '30JUN2014'd; ) it works.

I don't know why I can't just swap out the hardcoded value for &mth, giving that &mth shows as 30JUN2014.

I also tried just using where DATE = &mth; That doesn't work either.

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
random1
Fluorite | Level 6

Ohh, looks like I got it to work with

 

where DATE = "&mth"d;

 

double quotes, not single quotes.

**bleep** this is strange.

 

View solution in original post

3 REPLIES 3
random1
Fluorite | Level 6

Ohh, looks like I got it to work with

 

where DATE = "&mth"d;

 

double quotes, not single quotes.

**bleep** this is strange.

 

ballardw
Super User

@random1 wrote:

Ohh, looks like I got it to work with

 

where DATE = "&mth"d;

 

double quotes, not single quotes.

**bleep** this is strange.

 


Not at all strange. The use of double quotes for macro variables to resolve is very well documented. For one thing it allows the use of literal text values containing possible macro invocations such as '%InData' or '&Sons' without the macro processor trying to handle such when you know they are not macro code or macro variables.

PGStats
Opal | Level 21

macro variable replacement doesn't occur within single quotes. Use double quotes instead

 

where DATE = "&mth"d;

PG

sas-innovate-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Save $200 when you sign up by March 14!

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