data have;
input ID Sample $;
cards;
1 00012
2 00034
3 00032
4 00124
5 00432
;
run;
data want;
set have;
where reverse(strip(Sample)) NOT =: '4';
run;
/* end of program */
If the variable in numeric, you would use the MOD function
if mod(sample,10)=4 then delete;
-- Paige Miller
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!