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

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 2076 views
  • 0 likes
  • 2 in conversation