This code I am using in my situation was taken from (http://blogs.sas.com/content/sgf/2015/01/27/how-to-perform-a-fuzzy-match-using-sas-functions/). Usually, the point option is coupled with stop to prevent infinite looping. I am not sure why stop statment is not used here.
data test; set dsn1; tmp1=soundex(name1); do i=1 to nobs; set dsn2 point=i nobs=nobs; tmp2=soundex(name2); dif=compged(tmp1,tmp2); if dif<=50 then do; possible_match='Yes'; drop i tmp1 tmp2; output; end; end; run;
That's true, STOP is usually employed in combination with POINT=. In this case, however, SET DSN1 will eventually run out of observations to read, stopping the DATA step.
That's true, STOP is usually employed in combination with POINT=. In this case, however, SET DSN1 will eventually run out of observations to read, stopping the DATA step.
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 save with the early bird rate—just $795!
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.