☑ This topic is solved.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 02-02-2024 01:33 PM
(801 views)
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!
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you! This worked.