BookmarkSubscribeRSS Feed
Shmuel
Garnet | Level 18

Would you like to try:

data tasks;
set PDBIN;
by JOB;
lenght jx $10; /* max length of job prefix checked */
if _N_ =1 then do i=1 to 578; ctrs(i)=0; end;
if substr(JOB,1,2)  in (<list of 2 first characters of JOB names) 
  then do; jx = substr(JOB,1,2); output; end; 
if substr(JOB,1,4) in (<list of 4 first characters of JOB names)
  then do; jx = substr(JOB,1,4); output; end; 
   .....
 keep jx job;
run;
proc freq data=tasks;
      table jx;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 15 replies
  • 3361 views
  • 0 likes
  • 5 in conversation