Hello,
How do i extract the value in the "( )" and convert into numeric? I only want numbers, not "NA".
data:
var1 (character)
3 ( na ) |
81 (41.1%) |
3 (1.5%) |
want:
var2 (numeric)
. |
41.1 |
1.5 |
Untested because example data not provided in form of working data step code.
data want; set have; var2 = input(scan(var1,2,'()'),?? comma12.); format var2 percent8.1; run;
The '()' in the SCAN function is telling the function to only consider ( and ) when separating out values. So it is easier to tell exactly where/end the desired second value occurs.
If you want to change the actual value from 41.1% then you need to add a multiply by 100. I left the value alone and provided a format that will display the digits in the expected range. The ?? preceding the informat comma12 is to suppress the invalid data messages when attempting to convert "na" into a numeric value.
@HitmonTran wrote:
Hello,
How do i extract the value in the "( )" and convert into numeric? I only want numbers, not "NA".
data:
var1 (character)
3 ( na ) 81 (41.1%) 3 (1.5%)
want:
var2 (numeric)
. 41.1 1.5
Untested because example data not provided in form of working data step code.
data want; set have; var2 = input(scan(var1,2,'()'),?? comma12.); format var2 percent8.1; run;
The '()' in the SCAN function is telling the function to only consider ( and ) when separating out values. So it is easier to tell exactly where/end the desired second value occurs.
If you want to change the actual value from 41.1% then you need to add a multiply by 100. I left the value alone and provided a format that will display the digits in the expected range. The ?? preceding the informat comma12 is to suppress the invalid data messages when attempting to convert "na" into a numeric value.
@HitmonTran wrote:
Hello,
How do i extract the value in the "( )" and convert into numeric? I only want numbers, not "NA".
data:
var1 (character)
3 ( na ) 81 (41.1%) 3 (1.5%)
want:
var2 (numeric)
. 41.1 1.5
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for 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.