BookmarkSubscribeRSS Feed
skargae
Calcite | Level 5

Hi, 

 

I have a variable "gestational_age" in the data set decoded as, for example, "32+2 weeks". How can I easily convert it to a numeric variable and add the first number to the second one , turning the value into "34" instead of 32+2?

 

Thanks a lot in advance! 

1 REPLY 1
Tom
Super User Tom
Super User

Not sure about easy, but for such simple arithmetic you could use the RESOLVE() function to take advantage of the power of the macro processing language.

 

data test;
  gestational_age = "32+2 weeks" ;
  expression=scan(gestational_age,1,' ');
  age = input(resolve(cats('%sysevalf(',expression,')')),32.);
run;

proc print;
run;
       gestational_
Obs        age         expression    age

 1      32+2 weeks        32+2        34

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 429 views
  • 0 likes
  • 2 in conversation