BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Tom
Super User Tom
Super User

Is the problem reproducible? 

If so then just ask your data step to show you the records where you are seeing the skip.

Note: Do NOT overwrite your input as it will make debugging very hard.

data WANT;
  set have;
  retain t 0;
  select;
    when (amount NE 0) t=t+1;
    otherwise;
  end;
  if t in (3615 3616 119401 119402) then put _all_ ;
run;

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

Register now

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 15 replies
  • 3905 views
  • 5 likes
  • 6 in conversation