BookmarkSubscribeRSS Feed
zhang_l
Calcite | Level 5

I am trying to filter out records with the word "PAY" in the description but I want to filter out words containing PAY.

So for example if the description says

JOHN SMITH WEEKLY PAY

Then I wish to include this record as the word PAY is by itself. However if the Description is in the form of

PAYPAL , BPAY, PAYED

or any characters or words that start, has pay in the middle or ends with pay, then I wish to exclude the record.

Is there anyway to be able to do this?

2 REPLIES 2
stat_sas
Ammonite | Level 13

Try this.

data want;

set have;

if findw(name,'PAY')>0 then output;

run;

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 1159 views
  • 0 likes
  • 3 in conversation