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-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

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