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
The 2025 SAS Hackathon Kicks Off on June 11!
Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.