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

Hi,

 

I want to take all records with word "Income" in column Item . And the below code somehow fail! SAS return no record for data Want


	data Want; set Have;
	if Index(item,"Income")=1 ; run;

So I take a row full value ("42700 · Consulting Income") and try to see if SAS work with full value. And SAS correctly pick the row as code below:

	data check1; set PL;
	if Index(item,"42700 · Consulting Income")=1 ; run;

Can anyone help me to correct my original code?

 

Is that caused by the little dot in the string?

 

Thanks

 

HC

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
kiranv_
Rhodochrosite | Level 12

One means it sees  the only in starting position, so change it to greater than zero, it can find value anywhere

 

if Index(item,"Income")>0

View solution in original post

2 REPLIES 2
kiranv_
Rhodochrosite | Level 12

One means it sees  the only in starting position, so change it to greater than zero, it can find value anywhere

 

if Index(item,"Income")>0

hhchenfx
Rhodochrosite | Level 12
OMG, great thanks to you.
HC

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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