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
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
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
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.