BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SAS_inquisitive
Lapis Lazuli | Level 10

This works.

 

%put %substr(CHAR_DATA,1,4);

But when used in DATA step it does not work.

data check;
  var=%substr(CHAR_DATA,1,4);
run;
******* or *********;
%macro test;
data check;
  var=%substr(CHAR_DATA,1,4);
run;
%mend test;
%test

 

Thanks for explanation. 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

The statement works, but it doesn't do what you are expecting.  Macro language is not processing your data.  It has an entirely different function.  It generates the SAS language statements that will then process your data.  So this statement is legal:

 

%let newvar = %substr(CHAR_VAR, 1, 4);

 

It gives &NEWVAR the value CHAR (the first four characters in "CHAR_VAR").

 

That means that %SUBSTR works, and gives you a program that looks like this:

 

data check;

var = CHAR;

run;

 

Probably, this is not the program that you intended to generate.  So work backwards.  Start with what you would like to see as a SAS program, and then see where macro language might be able to help you get there.

 

Good luck.

View solution in original post

1 REPLY 1
Astounding
PROC Star

The statement works, but it doesn't do what you are expecting.  Macro language is not processing your data.  It has an entirely different function.  It generates the SAS language statements that will then process your data.  So this statement is legal:

 

%let newvar = %substr(CHAR_VAR, 1, 4);

 

It gives &NEWVAR the value CHAR (the first four characters in "CHAR_VAR").

 

That means that %SUBSTR works, and gives you a program that looks like this:

 

data check;

var = CHAR;

run;

 

Probably, this is not the program that you intended to generate.  So work backwards.  Start with what you would like to see as a SAS program, and then see where macro language might be able to help you get there.

 

Good luck.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1 reply
  • 1108 views
  • 0 likes
  • 2 in conversation