I have ICD-10 codes without decimal points and I would like to add decimal points after the 3rd character.
For example:
I have the following:
F3342
F348
But I would like to have:
F33.42
F34.8
Any help with this will be appreciated! Thank you!
data have;
input var $;
cards;
F3342
F348
;
data want;
set have;
if var ne '' then var= catx('.', substr(var, 1, 3), substr(var, 4));
proc print; run;
SUBSTR and CATX functions.
data have;
input var $;
cards;
F3342
F348
;
data want;
set have;
if var ne '' then var= catx('.', substr(var, 1, 3), substr(var, 4));
proc print; run;
SUBSTR and CATX functions.
Thank you! This worked.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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 save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.