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

I am getting an error when I use &md as follows:

 

data have2; set have1;
	mdCO = &md;
	do mdValid = mdCO to mdCO + &rankBack - 1;
		output;
	end;
run;

My date variable is already formatted in date9., but I am still getting the following error:

 

202  data have2; set have1;
203      mdCO = &md;
                -
                22
WARNING: Apparent symbolic reference MD not resolved.
ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, a numeric constant,
              a datetime constant, a missing value, INPUT, PUT.

204      do mdValid = mdCO to mdCO + &rankBack - 1;
205          output;
206      end;
207  run;

NOTE: The SAS System stopped processing this step because of errors.

Any suggestions will be greatly appreciated! 

1 ACCEPTED SOLUTION
2 REPLIES 2
Yegen
Pyrite | Level 9

I thought that it was defined, but you are right that somehow that part of the code was never included in my new code. Thanks, @Kurt_Bremser!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1317 views
  • 0 likes
  • 2 in conversation