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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 706 views
  • 0 likes
  • 2 in conversation