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

Hey,

So now I have a 'test' table which has a column 'words' with random values + number of 78:

Words

Anime 78

Rhino fdsgf 78

town 78

New York city 78

And now I need to rewrite this data set so it would have all the same data, excluding number 78 which makes my table:

Words

Anime

Rhino fdsgf

town

New York city

Thank You all.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

OK.

data have;
input words & $20.;
word=tranwrd(words,'78','');
cards;
Anime 78
Rhino fdsgf 78
town 78
New York city 78
;
run;


Ksharp

View solution in original post

1 REPLY 1
Ksharp
Super User

OK.

data have;
input words & $20.;
word=tranwrd(words,'78','');
cards;
Anime 78
Rhino fdsgf 78
town 78
New York city 78
;
run;


Ksharp

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 2294 views
  • 0 likes
  • 2 in conversation