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;

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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