Hi! I have a variable (concurrentcrg)..and I need to flag all the observations with values that start with 5 but do not end in 1.
Here the line of code that did not work...
if concurrentcrg in: ('5') and concurrentcrg ne '%1' then status='Uncontrolled';
Help is appreciated!
If character field, look at the SUBSTR() function.
If numeric field look at the SUBSTRN() function.
The REVERSE() function will reverse a string so you can obtain the last character. Or you could use the LENGTH function to get the last character.
Since it looks character, consider using the reverse function.
if substr(char, 1,1) = '5' and substr(trim(reverse(char)), 1,1) ne '1' then status='Uncontrolled';
Is it a character or numeric field?
Art, CEO, AnalystFinder.com
If character field, look at the SUBSTR() function.
If numeric field look at the SUBSTRN() function.
The REVERSE() function will reverse a string so you can obtain the last character. Or you could use the LENGTH function to get the last character.
Since it looks character, consider using the reverse function.
if substr(char, 1,1) = '5' and substr(trim(reverse(char)), 1,1) ne '1' then status='Uncontrolled';
Assuming it's character, then:
data want;
set have;
if first(concurrentcrg) eq '5' and first(reverse(strip(concurrentcrg))) ne '1'
then status='Uncontrolled';
run;
Art, CEO, AnalystFinder.com
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 the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.