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!

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