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
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.