BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
amsa1996
Fluorite | Level 6

Hi!

I want to filter out/remove the text "declaration" in my table, so that i only have the numeric value.

 

Can someone help me with this?

 

amsa1996_0-1588069348023.png

 

1 ACCEPTED SOLUTION
3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

Like this?

 

data have;
input case_concept_name $ 1-20;
datalines;
declaration 14447
declaration 14750
declaration 76001
declaration 14559
declaration 85327
;

data want;
    set have;
    newvar = input(compress(case_concept_name, , 'kd'), 8.);
run;
amsa1996
Fluorite | Level 6
Sorry about that...

Thank you for your help! It worked.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 686 views
  • 1 like
  • 3 in conversation