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

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

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